Skip to content

Commit

Permalink
readme: another fix to hash example
Browse files Browse the repository at this point in the history
  • Loading branch information
funny-falcon committed Oct 1, 2012
1 parent ad368a2 commit 84e178f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ unbeatably good spreading with sumbur:


```ruby ```ruby
def unsigned_32bit_hashof(id) def unsigned_32bit_hashof(id)
h = id * 0x531a5229 & 0xffffffff h = ((id+1) * 0x531a5229) & 0xffffffff
end end
``` ```


Expand Down

0 comments on commit 84e178f

Please sign in to comment.