summary refs log tree commit diff stats
path: root/lib/system/threads.nim
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2013-05-10 15:42:05 -0700
committerSimon Hafner <hafnersimon@gmail.com>2013-05-10 15:42:05 -0700
commit40b411fb1c319a74daedce524c5d821b6bdc0e45 (patch)
treecacbd79751c680644836144b5642a5035b4b1268 /lib/system/threads.nim
parent56539fd44d45fe19ca920b108d0963a620e1f2ee (diff)
parent0b5ca95222966d5f8f226c554220e3837c46c4f6 (diff)
downloadNim-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.nim4
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:
 ##
href='#n166'>166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211