Skip to content

Commit

Permalink
Fix denied warning
Browse files Browse the repository at this point in the history
  • Loading branch information
phimuemue authored and jswrenn committed Jan 31, 2025
1 parent 67b0d8e commit 9238090
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,10 @@ pub trait Itertools: Iterator {
/// ```rust
/// use itertools::Itertools;
///
/// (1i32..42i32).map_into::<f64>().collect_vec();
/// assert_eq!(
/// (1i32..4i32).map_into::<f64>().collect_vec(),
/// vec![1f64, 2f64, 3f64]
/// );
/// ```
fn map_into<R>(self) -> MapInto<Self, R>
where
Expand Down

0 comments on commit 9238090

Please sign in to comment.