From 3542ff8e396af4a1be7854e1ce028465c4366fc4 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 27 Mar 2018 22:05:32 +0200 Subject: [PATCH] Hide the Bound type in docs at its deprecated location in std::collections --- src/libstd/collections/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs index 426949d65df9..c7ad27d8d267 100644 --- a/src/libstd/collections/mod.rs +++ b/src/libstd/collections/mod.rs @@ -421,6 +421,7 @@ #[stable(feature = "rust1", since = "1.0.0")] #[rustc_deprecated(reason = "moved to `std::ops::Bound`", since = "1.26.0")] +#[doc(hidden)] pub use ops::Bound; #[stable(feature = "rust1", since = "1.0.0")] pub use alloc::{BinaryHeap, BTreeMap, BTreeSet};