Skip to content

Commit 074345b

Browse files
authored
chore: make some documents clearer (#115)
Signed-off-by: reddaisyy <reddaisy@outlook.jp>
1 parent ce9a48c commit 074345b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/global_rng.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::cell::Cell;
66
use std::ops::RangeBounds;
77
use std::vec::Vec;
88

9-
// Chosen by fair roll of the dice.
9+
// Chosen by a fair roll of the dice.
1010
const DEFAULT_RNG_SEED: u64 = 0xef6f79ed30ba75a;
1111

1212
impl Default for Rng {

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
//!
8787
//! # WebAssembly Notes
8888
//!
89-
//! For non-WASI WASM targets, there is additional sublety to consider when utilizing the global RNG.
89+
//! For non-WASI WASM targets, there is additional subtlety to consider when utilizing the global RNG.
9090
//! By default, `std` targets will use entropy sources in the standard library to seed the global RNG.
9191
//! However, these sources are not available by default on WASM targets outside of WASI.
9292
//!

0 commit comments

Comments
 (0)