From 42fb07d9ade7dcf662f5a953430267e92d980859 Mon Sep 17 00:00:00 2001 From: dbdr Date: Sun, 19 Jan 2025 16:57:23 +0100 Subject: [PATCH] Remove outdated comment in random.rs about std::hash::DefaultHasher being inaccessible Fixes #134717 (confirmed by @hkBst) --- library/std/src/hash/random.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/library/std/src/hash/random.rs b/library/std/src/hash/random.rs index 236803b24a2ec..4bbbb3d301b8f 100644 --- a/library/std/src/hash/random.rs +++ b/library/std/src/hash/random.rs @@ -2,9 +2,6 @@ //! [`collections`] module without actually publicly exporting them, so that parts of that //! implementation can more easily be moved to the [`alloc`] crate. //! -//! Although its items are public and contain stability attributes, they can't actually be accessed -//! outside this crate. -//! //! [`collections`]: crate::collections #[allow(deprecated)]