From ace3989d55f540ec692ef662b9c1329a058ded3c Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 7 Jul 2021 13:13:26 -0700 Subject: [PATCH] Revert "Add "every" as a doc alias for "all"." This reverts commit 35450365ac2fda8b948fe6fd1a1123837a9554b0. --- library/core/src/iter/traits/iterator.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs index 0032e8c3e47e0..8cb7aad28aa95 100644 --- a/library/core/src/iter/traits/iterator.rs +++ b/library/core/src/iter/traits/iterator.rs @@ -2254,7 +2254,6 @@ pub trait Iterator { /// // we can still use `iter`, as there are more elements. /// assert_eq!(iter.next(), Some(&3)); /// ``` - #[doc(alias = "every")] #[inline] #[stable(feature = "rust1", since = "1.0.0")] fn all(&mut self, f: F) -> bool