summaryrefslogtreecommitdiffstats
path: root/vendor/digest/src/dev/rng.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/digest/src/dev/rng.rs')
-rw-r--r--vendor/digest/src/dev/rng.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/digest/src/dev/rng.rs b/vendor/digest/src/dev/rng.rs
index 8b233aafb..d34a1cf31 100644
--- a/vendor/digest/src/dev/rng.rs
+++ b/vendor/digest/src/dev/rng.rs
@@ -2,7 +2,7 @@
use core::num::Wrapping;
/// Initial RNG state used in tests.
-// choosen by fair dice roll. guaranteed to be random.
+// chosen by fair dice roll. guaranteed to be random.
pub(crate) const RNG: XorShiftRng = XorShiftRng {
x: Wrapping(0x0787_3B4A),
y: Wrapping(0xFAAB_8FFE),