diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/collections/tables.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index e423396ed..e6e72d9ed 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -1159,10 +1159,10 @@ when isMainModule: doAssert(prev < i) prev = i - block: # Deletion from OrederedTable should account for collision groups. See issue #5057. + block: # Deletion from OrderedTable should account for collision groups. See issue #5057. # The bug is reproducible only with exact keys - const key1 = "boy_jackpot.inGamma1" - const key2 = "boy_jackpot.outBlack2" + const key1 = "boy_jackpot.inGamma" + const key2 = "boy_jackpot.outBlack" var t = { key1: 0, |