diff options
author | reactormonk <hafnersimon@gmail.com> | 2015-03-06 01:28:22 +0500 |
---|---|---|
committer | reactormonk <hafnersimon@gmail.com> | 2015-03-06 01:28:22 +0500 |
commit | 4e1afdd3e2dbe47d858842034e24babc4017d9db (patch) | |
tree | cceb1ac09c7de592604a7a6b842e648a58bc0e7f /lib/pure/hashes.nim | |
parent | cac259cdfb277f7cbc81332936a0331dd78990c8 (diff) | |
parent | 04906d6993dc776d2081b0489b97808dd7b6f61a (diff) | |
download | Nim-4e1afdd3e2dbe47d858842034e24babc4017d9db.tar.gz |
Merge pull request #2265 from jobe2015/korr_hashes_doku
Changed some characters (&! -> !&) in the documentation in lib/pure/hash...
Diffstat (limited to 'lib/pure/hashes.nim')
-rw-r--r-- | lib/pure/hashes.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/hashes.nim b/lib/pure/hashes.nim index 30daaf2dc..a16342d44 100644 --- a/lib/pure/hashes.nim +++ b/lib/pure/hashes.nim @@ -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 |