summary refs log tree commit diff stats
path: root/doc/manual.txt
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/manual.txt
parenta23d418d78f7c35b2e7aed23ed6beb60e2542b83 (diff)
downloadNim-baf89e3d66543a242013bea26cb779a2d9c0e727.tar.gz
GC'ed wide strings for windows
Diffstat (limited to 'doc/manual.txt')
-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:
63' href='#n163'>163 164 165 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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326