From 3eda54d736ef3faa58084effa59a05d7199f54a9 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Thu, 10 Nov 2022 00:00:01 -0800 Subject: [PATCH] Fix spelling: avalanche --- src/guide-seeding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide-seeding.md b/src/guide-seeding.md index 0054888..84bdff8 100644 --- a/src/guide-seeding.md +++ b/src/guide-seeding.md @@ -83,7 +83,7 @@ distinct, fixed random number seeds, e.g. 1, 2, 3, etc. [`SeedableRng::seed_from_u64`] is designed exactly for this use-case. Internally, it uses a simple PRNG to fill the bits of the seed from the input -number while providing good bit-avalance (so that two similar numbers such as +number while providing good bit-avalanche (so that two similar numbers such as 0 and 1 translate to very different seeds and independent RNG sequences). ```rust,editable