From e7b538aa3f8c139573ef33ecad15810685ea35ee Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 21 Jul 2016 22:25:24 -0400 Subject: [PATCH] Fixed code links --- docs/Garbage-Collector.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md index 7c5ab62a..0daef0e1 100644 --- a/docs/Garbage-Collector.md +++ b/docs/Garbage-Collector.md @@ -55,8 +55,8 @@ Cyclone supports native threads by using a tracing collector based on the Dolige 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. +- [`runtime.c`](https://github.com/justinethier/cyclone/blob/master/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`](https://github.com/justinethier/cyclone/blob/master/gc.c) contains the major GC code. # Data Structures