From 5bd22460a39d6f2316423bc853c29cb330c9dfd3 Mon Sep 17 00:00:00 2001 From: Andrew Gauger Date: Sat, 18 Apr 2020 10:55:29 -0700 Subject: [PATCH] Ignore test not no_run --- 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 be311a1..0655d1a 100644 --- a/src/algorithms/randomness/rand-dist.md +++ b/src/algorithms/randomness/rand-dist.md @@ -12,7 +12,7 @@ generator [`rand::Rng`]. The [distributions available are documented here][rand-distributions]. An example using the [`Normal`] distribution is shown below. -```rust,no_run +```rust,ignore extern crate rand_distr; extern crate rand;