Merge pull request #2265 from jobe2015/korr_hashes_doku

Changed some characters (&! -> !&) in the documentation in lib/pure/hash...
This commit is contained in:
reactormonk
2015-03-06 01:28:22 +05:00

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