diff options
author | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2013-05-10 23:33:01 +0200 |
---|---|---|
committer | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2013-05-10 23:33:01 +0200 |
commit | 2b517161e43ecb8904be69450a99b27c3571d5ca (patch) | |
tree | 95e4da699bc6acf4ec7828240d2a6acdbeeeb6f4 /lib/system | |
parent | 1980c8930d69ec3a53bcb4da993d387269f78eab (diff) | |
download | Nim-2b517161e43ecb8904be69450a99b27c3571d5ca.tar.gz |
Adds link to manual thread memory section from threads module.
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/threads.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/threads.nim b/lib/system/threads.nim index aba3bb275..7d74de92d 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 <manual.html#threads>`_. ## ## Example: ## |