Skip to content

Commit 89d7e4e

Browse files
authored
another typo
1 parent 1f99bb7 commit 89d7e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rayon-monte-carlo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fn main() {
5656
.map(|i| {
5757
let mut rng = ChaCha8Rng::seed_from_u64(SEED);
5858
// We chose ChaCha because it's fast, has suitable statistical properties for simulation,
59-
// and because it supports this set_stream() api, which lets us chose a different stream
59+
// and because it supports this set_stream() api, which lets us choose a different stream
6060
// per work item. ChaCha supports 2^64 independent streams.
6161
rng.set_stream(i);
6262
let mut count = 0;

0 commit comments

Comments
 (0)