summary refs log tree commit diff stats
path: root/lib/pure/collections/LockFreeHash.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pure/collections/LockFreeHash.nim')
-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