Skip to content

Commit 98250e7

Browse files
committed
docs: updated clarifications after re-exporting ParallelIntoIterator
1 parent 81404b7 commit 98250e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
//!```
3434
//!
3535
//! ## Multi-threaded bulk compressions with [`Parallel`]
36-
//! Since [`Parallel`] returns items in the same order they were passed into, you can do something like the example below where you save the filenames of your JPEG into a vector, and later zip it with the [`Parallel`] iterator you've made.
36+
//! via [`into_iter()`](Parallel::into_iter()), [`Parallel`] converts into [`ParallelIntoIterator`] which returns items in the same order they were passed in. Which means, you can do something like the example below where you save the filenames of your JPEG into a vector, and later zip it with the [`ParallelIntoIterator`] you've made.
3737
//!```
3838
//! use jippigy::Parallel;
3939
//! use std::path::PathBuf;

0 commit comments

Comments
 (0)