diff --git a/src/util/mod.rs b/src/util/mod.rs index f96fa55e9..71c5aefc7 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -227,8 +227,6 @@ pub fn pretty_array_like(parts: &[impl AsRef], 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(left: Option, other: R) -> bool where L: PartialEq,