Skip to content

Commit afcdd39

Browse files
committed
Fix missing word
1 parent 3d85443 commit afcdd39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/iter/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -745,9 +745,9 @@ pub trait ParallelIterator: Sized + Send {
745745
/// ### Fold vs Map/Reduce
746746
///
747747
/// Fold makes sense if you have some operation where it is
748-
/// cheaper to groups of elements at a time. For example, imagine
749-
/// collecting characters into a string. If you were going to use
750-
/// map/reduce, you might try this:
748+
/// cheaper to create groups of elements at a time. For example,
749+
/// imagine collecting characters into a string. If you were going
750+
/// to use map/reduce, you might try this:
751751
///
752752
/// ```
753753
/// use rayon::prelude::*;

0 commit comments

Comments
 (0)