Fix usage example in documentation to reference the crate name direcly

This commit is contained in:
Palash Tyagi 2025-07-19 00:04:19 +01:00
parent f2bd39b722
commit f6dea3fbca

View File

@ -5,7 +5,7 @@
//!
//! Usage:
//! ```
//! use crate::random::randomx_secure::SecureRandomX;
//! use rustframe::random::randomx_secure::SecureRandomX;
//! let mut rng = SecureRandomX::new().expect("secure rng");
//! let x = rng.normal(0.0, 1.0);
//! ```