From c7543652e67aea77dcda3a67c48efb9f76488140 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 27 Jan 2015 12:48:48 +0000 Subject: [PATCH] Revert "Update sets.nim" --- lib/pure/collections/sets.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/collections/sets.nim b/lib/pure/collections/sets.nim index 8af0b3118e..92ef3152d9 100644 --- a/lib/pure/collections/sets.nim +++ b/lib/pure/collections/sets.nim @@ -253,7 +253,7 @@ proc containsOrIncl*[A](s: var HashSet[A], key: A): bool = proc init*[A](s: var HashSet[A], initialSize=64) = ## Initializes a hash set. ## - ## The `initialSize` parameter needs to be a power of two. You can use + ## The `initialSize` parameter needs to be a power of too. You can use ## `math.nextPowerOfTwo() `_ to guarantee that at ## runtime. All set variables have to be initialized before you can use them ## with other procs from this module with the exception of `isValid()