diff --git a/CHANGELOG.md b/CHANGELOG.md index fb69023..c7893af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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**) diff --git a/src/lib.rs b/src/lib.rs index 42d9079..1ca8f51 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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.