diff options
author | Araq <rumpf_a@web.de> | 2013-05-20 02:17:24 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-05-20 02:17:24 +0200 |
commit | baf89e3d66543a242013bea26cb779a2d9c0e727 (patch) | |
tree | 8060c791247b214985f7fd8987de1a9c5c834769 /doc | |
parent | a23d418d78f7c35b2e7aed23ed6beb60e2542b83 (diff) | |
download | Nim-baf89e3d66543a242013bea26cb779a2d9c0e727.tar.gz |
GC'ed wide strings for windows
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.txt | 8 |
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: |