Skip to content

Commit 6a81e09

Browse files
committed
typo fixed
1 parent 7310265 commit 6a81e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/bench_parallelization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ fn main() {
7474
Box::new(move || {
7575
let list: DoublyList<_> = (0..args.len as usize).collect();
7676

77-
list.par_x() // replace iter_ (into_iter_x) with par_x (into_par_x) to parallelize !
77+
list.par_x() // replace iter_x (into_iter_x) with par_x (into_par_x) to parallelize !
7878
.filter(|x| *x % 3 != 0)
7979
.map(|x| x + fibonacci(x % 1000))
8080
.filter(|x| x % 2 == 0)

0 commit comments

Comments
 (0)