diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-02-06 15:24:09 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-02-06 15:24:09 +0100 |
commit | 981974ab11fa30b5dc43b24eb20d2a7efccf8393 (patch) | |
tree | 226845110725cc2982757ebd17b0e749b389a0c9 /lib/pure/collections | |
parent | 03f4aa23d767c3d4a37980377d757b4df90d6778 (diff) | |
parent | f8d98700ac48423f399def1dbb2b4acca8b5c1fe (diff) | |
download | Nim-981974ab11fa30b5dc43b24eb20d2a7efccf8393.tar.gz |
Merge pull request #3831 from ephja/nimrod-to-nim
nimrod -> nim
Diffstat (limited to 'lib/pure/collections')
-rw-r--r-- | lib/pure/collections/sets.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/sets.nim b/lib/pure/collections/sets.nim index abe9cf85e..9a42a21ee 100644 --- a/lib/pure/collections/sets.nim +++ b/lib/pure/collections/sets.nim @@ -951,7 +951,7 @@ when isMainModule and not defined(release): var b = initOrderedSet[int]() for x in [2, 4, 5]: b.incl(x) assert($a == $b) - assert(a == b) # https://github.com/Araq/Nimrod/issues/1413 + assert(a == b) # https://github.com/Araq/Nim/issues/1413 block initBlocks: var a: OrderedSet[int] |