summary refs log tree commit diff stats
path: root/lib/pure/concurrency/threadpool.nim
diff options
context:
space:
mode:
authorTomohiro <gpuppur@gmail.com>2018-10-13 15:55:34 +0900
committerAndreas Rumpf <rumpf_a@web.de>2018-10-13 08:55:34 +0200
commiteb4272ba1cbed567a35d8c2eb8eff4081794b190 (patch)
tree8820a48cb8545d71788fdaee4986c2030308be74 /lib/pure/concurrency/threadpool.nim
parent9cdd9be5a529675112b4c0e85a66061eaf0f53b7 (diff)
downloadNim-eb4272ba1cbed567a35d8c2eb8eff4081794b190.tar.gz
manual: Fix links to Parallel & Spawn (#9342)
Diffstat (limited to 'lib/pure/concurrency/threadpool.nim')
-rw-r--r--lib/pure/concurrency/threadpool.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/concurrency/threadpool.nim b/lib/pure/concurrency/threadpool.nim
index f3b13fac5..9c9425d9f 100644
--- a/lib/pure/concurrency/threadpool.nim
+++ b/lib/pure/concurrency/threadpool.nim
@@ -7,7 +7,7 @@
 #    distribution, for details about the copyright.
 #
 
-## Implements Nim's 'spawn'.
+## Implements Nim's `spawn <manual.html#parallel-amp-spawn>`_.
 
 when not compileOption("threads"):
   {.error: "Threadpool requires --threads:on option.".}
Andreas Rumpf <rumpf_a@web.de> 2008-11-16 22:08:15 +0100 committer Andreas Rumpf <rumpf_a@web.de> 2008-11-16 22:08:15 +0100 version 0.7.0' href='/ahoang/Nim/commit/tests/tstrset.nim?h=devel&id=8b2a9401a147bd0b26cd2976ae71a1022fbde8cc'>8b2a9401a ^
972c51086 ^





8b2a9401a ^
972c51086 ^
8b2a9401a ^
972c51086 ^





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74