diff options
author | Araq <rumpf_a@web.de> | 2019-07-10 23:55:56 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-10 23:55:56 +0200 |
commit | 38bdf1cd7f4d5c6e22a70ee32438beccc7e36690 (patch) | |
tree | 7661bad127a6c489e2047dbcd54e2268d5000ec0 /lib/pure/collections | |
parent | b2f944789630250cb4cc38f9f6b0a063d6e8a703 (diff) | |
download | Nim-38bdf1cd7f4d5c6e22a70ee32438beccc7e36690.tar.gz |
minor style changes
Diffstat (limited to 'lib/pure/collections')
-rw-r--r-- | lib/pure/collections/tables.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index a5993f809..1352bdf68 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -1741,7 +1741,7 @@ iterator mvalues*[A, B](t: var OrderedTable[A, B]): var B = # --------------------------- OrderedTableRef ------------------------------- # --------------------------------------------------------------------------- -proc newOrderedTable*[A, B](initialsize = defaultInitialSize): <//>OrderedTableRef[A, B] = +proc newOrderedTable*[A, B](initialSize = defaultInitialSize): <//>OrderedTableRef[A, B] = ## Creates a new ordered ref hash table that is empty. ## ## ``initialSize`` must be a power of two (default: 64). @@ -2502,7 +2502,7 @@ iterator mvalues*[A](t: var CountTable[A]): var int = proc inc*[A](t: CountTableRef[A], key: A, val = 1) -proc newCountTable*[A](initialsize = defaultInitialSize): <//>CountTableRef[A] = +proc newCountTable*[A](initialSize = defaultInitialSize): <//>CountTableRef[A] = ## Creates a new ref count table that is empty. ## ## ``initialSize`` must be a power of two (default: 64). |