diff options
author | Araq <rumpf_a@web.de> | 2019-07-10 15:48:30 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-10 15:48:30 +0200 |
commit | bc7733827d12152130fc3aad5412c9ea8aef26e5 (patch) | |
tree | b8985bb33038c5cd42ff41f0ee8af5976a553be9 /lib/pure/collections | |
parent | 6663dbbe5728c847929ca99145e733bf5290da26 (diff) | |
download | Nim-bc7733827d12152130fc3aad5412c9ea8aef26e5.tar.gz |
make more parts of the stdlib compile with --styleCheck:error
Diffstat (limited to 'lib/pure/collections')
-rw-r--r-- | lib/pure/collections/tables.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index eb95119fc..a5993f809 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -788,7 +788,7 @@ iterator allValues*[A, B](t: Table[A, B]; key: A): B = # ------------------------------------------------------------------- -proc newTable*[A, B](initialsize = defaultInitialSize): <//>TableRef[A, B] = +proc newTable*[A, B](initialSize = defaultInitialSize): <//>TableRef[A, B] = ## Creates a new ref hash table that is empty. ## ## ``initialSize`` must be a power of two (default: 64). |