From c17b86812d6c6228b12b95363b1fdae3eb7da6f9 Mon Sep 17 00:00:00 2001 From: Joel Aschmann Date: Thu, 11 Jan 2024 20:48:05 +0100 Subject: [PATCH] Fix old doc reference --- src/prng.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/prng.rs b/src/prng.rs index 6194618d..343e0644 100644 --- a/src/prng.rs +++ b/src/prng.rs @@ -3,8 +3,7 @@ //! //! At the moment two prngs are available: [`rand::rngs::StdRng`] and [`crate::random::Random`]. //! Both of these claim to be cryptographic secure prngs. Provided of course the seeds from `hwrng` -//! are secure to begin with, which drastically depends on the board used, see remarks in [`crate::hwrng`] module! - +//! are secure to begin with, which drastically depends on the board used, see remarks in [RIOTs documentation](https://doc.riot-os.org/group__drivers__periph__hwrng.html). use embedded_hal::prelude::_embedded_hal_blocking_rng_Read; use rand::{rngs::StdRng, SeedableRng};