From 2b517161e43ecb8904be69450a99b27c3571d5ca Mon Sep 17 00:00:00 2001 From: Grzegorz Adam Hankiewicz Date: Fri, 10 May 2013 23:33:01 +0200 Subject: [PATCH] Adds link to manual thread memory section from threads module. --- lib/system/threads.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/system/threads.nim b/lib/system/threads.nim index aba3bb2755..7d74de92d2 100644 --- a/lib/system/threads.nim +++ b/lib/system/threads.nim @@ -14,8 +14,8 @@ ## Nimrod's memory model for threads is quite different from other common ## programming languages (C, Pascal): Each thread has its own ## (garbage collected) heap and sharing of memory is restricted. This helps -## to prevent race conditions and improves efficiency. See the manual for -## details of this memory model. +## to prevent race conditions and improves efficiency. See `the manual for +## details of this memory model `_. ## ## Example: ##