summaryrefslogtreecommitdiff
path: root/src/gc
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityamandaleeka@users.noreply.github.com>2016-06-28 15:37:25 -0700
committerGitHub <noreply@github.com>2016-06-28 15:37:25 -0700
commitbbb24f97ea4ab91b731363276d2401d62f3da7cf (patch)
tree6c0289d61420dde0d91d778b4063a2ce2671fd56 /src/gc
parent2364d603e7d1357ccc4da6b0761a5a2575511297 (diff)
downloadcoreclr-bbb24f97ea4ab91b731363276d2401d62f3da7cf.tar.gz
coreclr-bbb24f97ea4ab91b731363276d2401d62f3da7cf.tar.bz2
coreclr-bbb24f97ea4ab91b731363276d2401d62f3da7cf.zip
Fix path to BOTR GC section in gc.cpp (#6039)
Diffstat (limited to 'src/gc')
-rw-r--r--src/gc/gc.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/gc/gc.cpp b/src/gc/gc.cpp
index 8481857fb1..dd4bcb3416 100644
--- a/src/gc/gc.cpp
+++ b/src/gc/gc.cpp
@@ -3,20 +3,19 @@
// See the LICENSE file in the project root for more information.
-//
+//
// #Overview
-//
-// GC automatically manages memory allocated by managed code.
-// The design doc for GC can be found at
-// file:../../doc/BookOfTheRuntime/GC/GCDesign.doc
-//
+//
+// GC automatically manages memory allocated by managed code.
+// The design doc for GC can be found at Documentation/botr/garbage-collection.md
+//
// This file includes both the code for GC and the allocator. The most common
// case for a GC to be triggered is from the allocator code. See
// code:#try_allocate_more_space where it calls GarbageCollectGeneration.
-//
-// Entry points for the allocate is GCHeap::Alloc* which are called by the
+//
+// Entry points for the allocator are GCHeap::Alloc* which are called by the
// allocation helpers in gcscan.cpp
-//
+//
#include "gcpriv.h"