Skip to content

Commit ce94ae3

Browse files
chore(vm): clean docstrings of the code.
1 parent dd4dc55 commit ce94ae3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • compiler/src/modules

compiler/src/modules/fx.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ impl FxBuildHasher {
3939
}
4040
}
4141

42-
/// Avalanche mixer: one bit difference spreads across all 64 bits.
4342
#[inline]
44-
fn murmur3_fmix64(mut h: u64) -> u64 {
43+
fn murmur3_fmix64(mut h: u64) -> u64 { // Avalanche mixer: one bit difference spreads across all 64 bits.
4544
h ^= h >> 33;
4645
h = h.wrapping_mul(0xff51afd7ed558ccd);
4746
h ^= h >> 33;

0 commit comments

Comments
 (0)