summary refs log tree commit diff stats
path: root/lib/pure/collections/tables.nim
diff options
context:
space:
mode:
authorClay Sweetser <clay.sweetser@gmail.com>2014-07-24 18:17:20 -0400
committerClay Sweetser <clay.sweetser@gmail.com>2014-07-24 18:17:20 -0400
commit18003ff1966fc54ed1b2b39988dda6961ce35c80 (patch)
treeeb8ade8f35f1a9e9e5aadae1eba27256d0292614 /lib/pure/collections/tables.nim
parente5acd9d4107233d50214bf10beb0cf76c9cbbcda (diff)
downloadNim-18003ff1966fc54ed1b2b39988dda6961ce35c80.tar.gz
Added stylistic consistancy.
Diffstat (limited to 'lib/pure/collections/tables.nim')
-rw-r--r--lib/pure/collections/tables.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim
index 146cb76c9..dcf2ab481 100644
--- a/lib/pure/collections/tables.nim
+++ b/lib/pure/collections/tables.nim
@@ -335,7 +335,7 @@ proc `$`*[A, B](t: PTable[A, B]): string =
 proc `==`*[A, B](s, t: PTable[A, B]): bool =
   if isNil(s): result = isNil(t)
   elif isNil(t): result = false
-  else: equalsImpl()
+  else: result = equalsImpl()
 
 proc newTableFrom*[A, B, C](collection: A, index: proc(x: B): C): PTable[C, B] =
   ## Index the collection with the proc provided.