From 512561ce964401ae8824c04d1cba59e92a3b081d Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 1 Jul 2024 18:18:21 +0700 Subject: [PATCH] Fix typos. --- CHANGELOG.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.