Skip to content

Commit

Permalink
Replace RNG seed in FastRand example
Browse files Browse the repository at this point in the history
  • Loading branch information
Gawdl3y committed Apr 24, 2024
1 parent 81fe28f commit a2a4f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dice/roller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub trait Roller {
/// use dicey::dice::{roller::{FastRand as FastRandRoller, Roller}, Dice};
/// use fastrand::Rng;
///
/// let mut roller = FastRandRoller::new(Rng::with_seed(0xef6f79ed30ba75a));
/// let mut roller = FastRandRoller::new(Rng::with_seed(0x750c38d574400));
/// let dice = Dice::new(4, 6);
/// let _ = roller.roll(&dice, true)?;
/// let _ = roller.roll(&dice, true)?;
Expand Down

0 comments on commit a2a4f21

Please sign in to comment.