Changed some characters (&! -> !&) in the documentation in lib/pure/hashes.nim

This commit is contained in:
Johanna Berewinkel
2015-03-05 12:01:42 +01:00
parent 70d0894ace
commit 04906d6993

View File

@@ -33,8 +33,8 @@
## proc hash(x: Something): THash =
## ## Computes a THash from `x`.
## var h: THash = 0
## h = h &! hash(x.foo)
## h = h &! hash(x.bar)
## h = h !& hash(x.foo)
## h = h !& hash(x.bar)
## result = !$h
import