From 0ca69611cb2bbea577f8bfbf45033b7a72efdfc7 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 20 Jan 2016 19:30:58 -0500 Subject: [PATCH] WIP --- docs/Garbage-Collector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md index 65a7b034..56747109 100644 --- a/docs/Garbage-Collector.md +++ b/docs/Garbage-Collector.md @@ -38,7 +38,7 @@ Cyclone supports native threads by using a tracing collector based on the Dolige # Code -The goal of this paper is to provide a high-level overview of Cyclone's garbage collector. The implementation code is available in this repository: +The goal of this paper is to provide a high-level overview of Cyclone's garbage collector. The implementation code is available here: - [`runtime.c`](../runtime.c) contains most of the runtime system, including code to perform minor GC. A good place to start would be the `GC` and `gc_minor` functions. - [`gc.c`](../gc.c) contains the major GC code.