summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-05-20 02:17:24 +0200
committerAraq <rumpf_a@web.de>2013-05-20 02:17:24 +0200
commitbaf89e3d66543a242013bea26cb779a2d9c0e727 (patch)
tree8060c791247b214985f7fd8987de1a9c5c834769 /doc
parenta23d418d78f7c35b2e7aed23ed6beb60e2542b83 (diff)
downloadNim-baf89e3d66543a242013bea26cb779a2d9c0e727.tar.gz
GC'ed wide strings for windows
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 4d2cd6a62..31bd7134d 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -2868,9 +2868,9 @@ Effect system
 Exception tracking
 ------------------
 
-Nimrod supports `exception tracking`:idx:. The `raises`:idx: pragma can used to
-explicitly define which exceptions a proc/iterator/method/converter is allowed
-to raise. The compiler verifies this:
+Nimrod supports `exception tracking`:idx:. The `raises`:idx: pragma can be used
+to explicitly define which exceptions a proc/iterator/method/converter is 
+allowed to raise. The compiler verifies this:
 
 .. code-block:: nimrod
   proc p(what: bool) {.raises: [EIO, EOS].} =
@@ -2878,7 +2878,7 @@ to raise. The compiler verifies this:
     else: raise newException(EOS, "OS")
 
 An empty ``raises`` list (``raises: []``) means that no exception may be raised:
-  
+
 .. code-block:: nimrod
   proc p(): bool {.raises: [].} =
     try:
dded early reference to the man page' href='/akspecs/ranger/commit/README?h=v1.9.0b3&id=4833bc2383e30ccd3fb500497e9d1af7d056f066'>4833bc23 ^
4ea0f69a ^

240394a4 ^

712aa449
240394a4 ^

240394a4 ^
7dc8fef8 ^
9e89f023 ^
36e4e71e ^
20ab9343 ^

20ab9343 ^





4ea0f69a ^

240394a4 ^
7dc8fef8 ^
36e4e71e ^

4a383291 ^
78a7d762 ^
e952d6cb ^
78a7d762 ^
e952d6cb ^
4ea0f69a ^

7838675f ^

07069888 ^

07069888 ^
7838675f ^

1891697f ^
755e7df1 ^
a3d5f44b ^
7838675f ^
7dc8fef8 ^
500cf259 ^


7dc8fef8 ^



240394a4 ^



240394a4 ^
7dc8fef8 ^
240394a4 ^




7dc8fef8 ^
240394a4 ^



e5fb3d74 ^
240394a4 ^

240394a4 ^
7dc8fef8 ^



7b33b517 ^

176e8a68 ^
7b33b517 ^
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96