summary refs log tree commit diff stats
path: root/lib/pure/collections
diff options
context:
space:
mode:
authorStephane Fontaine <stefont@gmail.com>2016-05-13 22:14:22 +0400
committerStephane Fontaine <stefont@gmail.com>2016-05-13 22:14:22 +0400
commitfbd6291f2f68820421946278ca1b9899fcd75f66 (patch)
tree2c363333656015c8c765f710506eee227e161ba7 /lib/pure/collections
parent299989f3aa72b4bb0558ce5dbe7043dc83a4d2a5 (diff)
downloadNim-fbd6291f2f68820421946278ca1b9899fcd75f66.tar.gz
Fix missing `]`
other nim can't parse the file.
Introduced in https://github.com/nim-lang/Nim/commit/192ba3bbc0ae7f570c1277c9211d24eeea2cf48a#diff-1a01187da2fad29f03da8ce36ffe1f91
Diffstat (limited to 'lib/pure/collections')
-rw-r--r--lib/pure/collections/LockFreeHash.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/LockFreeHash.nim b/lib/pure/collections/LockFreeHash.nim
index a3ead81e3..bb77331df 100644
--- a/lib/pure/collections/LockFreeHash.nim
+++ b/lib/pure/collections/LockFreeHash.nim
@@ -74,7 +74,7 @@ type
     copyDone: int
     next: PConcTable[K,V]
     data: EntryArr
-{.deprecated: [TEntry: Entry, TEntryArr: EntryArr.}
+{.deprecated: [TEntry: Entry, TEntryArr: EntryArr].}
 
 proc setVal[K,V](table: var PConcTable[K,V], key: int, val: int,
   expVal: int, match: bool): int