We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d85443 commit afcdd39Copy full SHA for afcdd39
src/iter/mod.rs
@@ -745,9 +745,9 @@ pub trait ParallelIterator: Sized + Send {
745
/// ### Fold vs Map/Reduce
746
///
747
/// 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:
+ /// cheaper to create groups of elements at a time. For example,
+ /// imagine collecting characters into a string. If you were going
+ /// to use map/reduce, you might try this:
751
752
/// ```
753
/// use rayon::prelude::*;
0 commit comments