diff options
author | Araq <rumpf_a@web.de> | 2013-05-11 10:54:06 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-05-11 10:54:06 +0200 |
commit | f114e66088ee149f37aab5c71d0976f5e6ae9517 (patch) | |
tree | 96cf82a102e066d092f89c97975715963a7e39dd /lib/system/threads.nim | |
parent | adedfc3a10ca6fb4b3c2f467b2d1f36da678c164 (diff) | |
parent | 40b411fb1c319a74daedce524c5d821b6bdc0e45 (diff) | |
download | Nim-f114e66088ee149f37aab5c71d0976f5e6ae9517.tar.gz |
Merge branch 'master' of github.com:Araq/Nimrod
Diffstat (limited to 'lib/system/threads.nim')
-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: ## |