diff options
author | Araq <rumpf_a@web.de> | 2014-08-28 22:36:14 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-28 22:36:14 +0200 |
commit | 3ea64469008c30682a0cc7b92e3f553a07f30a37 (patch) | |
tree | ec9f76f40b2fb55bc98873d8661b72f9c9ca63c1 /doc/sets_fragment.txt | |
parent | c95e47216f790f8aac9860a8a0deae0369a2a84f (diff) | |
download | Nim-3ea64469008c30682a0cc7b92e3f553a07f30a37.tar.gz |
Nimrod renamed to Nim
Diffstat (limited to 'doc/sets_fragment.txt')
-rw-r--r-- | doc/sets_fragment.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/sets_fragment.txt b/doc/sets_fragment.txt index fba355269..32dbac1c2 100644 --- a/doc/sets_fragment.txt +++ b/doc/sets_fragment.txt @@ -6,7 +6,7 @@ Sets can be constructed via the set constructor: ``{}`` is the empty set. The empty set is type compatible with any concrete set type. The constructor can also be used to include elements (and ranges of elements): -.. code-block:: nimrod +.. code-block:: nim type TCharSet = set[char] var |