diff --git a/chacha20/src/rng.rs b/chacha20/src/rng.rs index 70c8b982..90599015 100644 --- a/chacha20/src/rng.rs +++ b/chacha20/src/rng.rs @@ -190,6 +190,8 @@ macro_rules! impl_chacha_rng { /// // in case you need to zeroize the RNG's buffer, ensure that /// // the "zeroize" feature is enabled in Cargo.toml and run /// # #[cfg(feature = "zeroize")] + /// use zeroize::Zeroize; + /// # #[cfg(feature = "zeroize")] /// rng.zeroize(); /// ``` ///