Skip to content

Commit 86f1f27

Browse files
committed
fix rustdoc warnings
1 parent f459f47 commit 86f1f27

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2692,7 +2692,6 @@ pub trait Itertools : Iterator {
26922692
/// itertools::assert_equal(oldest_people_first,
26932693
/// vec!["Jill", "Jack", "Jane", "John"]);
26942694
/// ```
2695-
/// ```
26962695
#[cfg(feature = "use_alloc")]
26972696
fn sorted_by_cached_key<K, F>(self, f: F) -> VecIntoIter<Self::Item>
26982697
where

src/ziptuple.rs

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ pub struct Zip<T> {
3636
///
3737
/// assert_eq!(results, [0 + 3, 10 + 7, 29, 36]);
3838
/// ```
39+
/// [`izip!()`]: crate::izip
3940
pub fn multizip<T, U>(t: U) -> Zip<T>
4041
where Zip<T>: From<U>,
4142
Zip<T>: Iterator,

0 commit comments

Comments
 (0)