Added stylistic consistancy.

This commit is contained in:
Clay Sweetser
2014-07-24 18:17:20 -04:00
parent e5acd9d410
commit 18003ff196

View File

@@ -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.