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 63b04e5 commit 84b2e56Copy full SHA for 84b2e56
src/all_equal_value_err.rs
@@ -1,8 +1,10 @@
1
+#[cfg(doc)]
2
+use crate::Itertools;
3
#[cfg(feature = "use_std")]
4
use std::error::Error;
5
use std::fmt::{Debug, Display, Formatter, Result as FmtResult};
6
-/// Value returned for the error case of `Itertools::all_equal_value()`.
7
+/// Value returned for the error case of [`Itertools::all_equal_value`].
8
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
9
pub struct AllEqualValueError<Item>(pub Option<[Item; 2]>);
10
0 commit comments