From bbb24f97ea4ab91b731363276d2401d62f3da7cf Mon Sep 17 00:00:00 2001 From: Aditya Mandaleeka Date: Tue, 28 Jun 2016 15:37:25 -0700 Subject: [PATCH] Fix path to BOTR GC section in gc.cpp (#6039) --- src/gc/gc.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/gc/gc.cpp b/src/gc/gc.cpp index 8481857..dd4bcb3 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" -- 2.7.4