summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/util/mod.rs b/src/util/mod.rs
index f96fa55e..71c5aefc 100644
--- a/src/util/mod.rs
+++ b/src/util/mod.rs
@@ -227,8 +227,6 @@ pub fn pretty_array_like(parts: &[impl AsRef<str>], trailing_comma: bool) -> Str
}
/// Check if the [`Option`]-wrapped L is same to R.
-///
-/// This is the stable version of [`Option::contains`].
pub fn option_eq<L, R>(left: Option<L>, other: R) -> bool
where
L: PartialEq<R>,