From dac3bd15eee73279970c9a44d1e31fb1d99b1d71 Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Sun, 7 Jun 2020 04:18:22 +0200 Subject: [PATCH] Fix typo (#592) --- src/algorithms/randomness/rand-dist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/randomness/rand-dist.md b/src/algorithms/randomness/rand-dist.md index a5f6159..0d8bc18 100644 --- a/src/algorithms/randomness/rand-dist.md +++ b/src/algorithms/randomness/rand-dist.md @@ -4,7 +4,7 @@ By default, random numbers in the `rand` crate have [uniform distribution]. The [`rand_distr`] crate provides -other kinds of distrubutions. To use them, you instantiate +other kinds of distributions. To use them, you instantiate a distribution, then sample from that distribution using [`Distribution::sample`] with help of a random-number generator [`rand::Rng`].