diff options
author | Simon Hafner <hafnersimon@gmail.com> | 2013-05-10 15:42:05 -0700 |
---|---|---|
committer | Simon Hafner <hafnersimon@gmail.com> | 2013-05-10 15:42:05 -0700 |
commit | 40b411fb1c319a74daedce524c5d821b6bdc0e45 (patch) | |
tree | cacbd79751c680644836144b5642a5035b4b1268 /lib/system/threads.nim | |
parent | 56539fd44d45fe19ca920b108d0963a620e1f2ee (diff) | |
parent | 0b5ca95222966d5f8f226c554220e3837c46c4f6 (diff) | |
download | Nim-40b411fb1c319a74daedce524c5d821b6bdc0e45.tar.gz |
Merge pull request #426 from gradha/pr_misc_doc_improvements
Misc doc improvements
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: ## |