From 5eee2622cb9492d45513834cef987f3e6b9c96cd Mon Sep 17 00:00:00 2001 From: Acrimon Date: Mon, 5 Aug 2019 21:06:32 +0200 Subject: [PATCH] Fixed comment typo. --- world/src/util/seed_expan.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/src/util/seed_expan.rs b/world/src/util/seed_expan.rs index 4a82c962f1..07e57d9343 100644 --- a/world/src/util/seed_expan.rs +++ b/world/src/util/seed_expan.rs @@ -46,7 +46,7 @@ fn diffuse(mut x: u64) -> u64 { x } -// Expands a 32 bit state into at 64 bit state. +// Expands a 32 bit state into a 64 bit state. fn initial_expand(x: u32) -> u64 { let f = (x as u64).wrapping_mul(0x2f72b4215a3d8caf); f.wrapping_mul(f)