diff options
author | Johanna Berewinkel <jbe@berewinkel-sys.de> | 2015-03-05 12:01:42 +0100 |
---|---|---|
committer | Johanna Berewinkel <jbe@berewinkel-sys.de> | 2015-03-05 12:01:42 +0100 |
commit | 04906d6993dc776d2081b0489b97808dd7b6f61a (patch) | |
tree | 7f6c2892aa31612c6bc6b708e15985bd753cd6ee /lib/pure/hashes.nim | |
parent | 70d0894ace2f93e459be0c2caf59748dec9b0ef2 (diff) | |
download | Nim-04906d6993dc776d2081b0489b97808dd7b6f61a.tar.gz |
Changed some characters (&! -> !&) in the documentation in lib/pure/hashes.nim
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 |