Skip to content

Commit

Permalink
Merge pull request #50 from rfdzan/docs
Browse files Browse the repository at this point in the history
docs: updated clarifications after re-exporting `ParallelIntoIterator`
  • Loading branch information
rfdzan authored Apr 21, 2024
2 parents 81404b7 + 98250e7 commit 7208a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
//!```
//!
//! ## Multi-threaded bulk compressions with [`Parallel`]
//! 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.
//! 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.
//!```
//! use jippigy::Parallel;
//! use std::path::PathBuf;
Expand Down

0 comments on commit 7208a0d

Please sign in to comment.