Skip to content

Commit

Permalink
Merge pull request #33 from krtab/typo
Browse files Browse the repository at this point in the history
Fix doc typos
  • Loading branch information
WaffleLapkin authored Mar 25, 2024
2 parents b0df6d0 + 00bfdef commit 846f2d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ fn take_first_chunk<'a, const N: usize>(slice: &mut &'a [u8]) -> Option<&'a [u8;
}

impl FxHasher {
/// Creates `fx` hasher with a given seed.
/// Creates a `fx` hasher with a given seed.
pub const fn with_seed(seed: usize) -> FxHasher {
FxHasher { hash: seed }
}

/// Create a default `fq` hasher.
/// Creates a default `fx` hasher.
pub const fn default() -> FxHasher {
FxHasher { hash: 0 }
}
Expand Down

0 comments on commit 846f2d6

Please sign in to comment.