Skip to content

Commit

Permalink
Merge pull request #46 from waywardmonkeys/fix-typos
Browse files Browse the repository at this point in the history
Fix typos.
  • Loading branch information
Noratrieb committed Jul 1, 2024
2 parents c17a880 + 512561c commit fe9dca3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This replaces the previous "fxhash" algorithm originating in Firefox
with a custom hasher designed and implemented by Orson Peters ([`@orlp`](https://github.com/orlp)).
It was measured to have slightly better performance for rustc, has better theoretical properties
and also includes a signficantly better string hasher.
and also includes a significantly better string hasher.
- Fix `no_std` builds

## 1.2.0 (**YANKED**)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub struct FxHasher {
// as a multilinear hash with keystream k[..]
// m[0] * k[0] + m[1] * k[1] + m[2] * k[2] + ...
// where keystream k just happens to be generated using a multiplicative
// congrential pseudorandom number generator (MCG). For that reason we chose a
// congruential pseudorandom number generator (MCG). For that reason we chose a
// constant that was found to be good for a MCG in:
// "Computationally Easy, Spectrally Good Multipliers for Congruential
// Pseudorandom Number Generators" by Guy Steele and Sebastiano Vigna.
Expand Down

0 comments on commit fe9dca3

Please sign in to comment.