From f453565ebf061581f398eb3a5dcfb7a35a5ad04a Mon Sep 17 00:00:00 2001 From: figsoda Date: Fri, 2 Jun 2023 16:43:03 -0400 Subject: [PATCH] Remove link to `Option::contains`, since it has been removed (#1399) --- src/util/mod.rs | 2 -- 1 file changed, 2 deletions(-) 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,