about summary refs log tree commit diff
path: root/library/core/src/slice
diff options
context:
space:
mode:
authorLukas Bergdoll <lukas.bergdoll@gmail.com>2024-08-01 17:37:07 +0200
committerLukas Bergdoll <lukas.bergdoll@gmail.com>2024-08-01 17:37:07 +0200
commiteae7a186b221bb2b4a4bedeb19d5aca658e91c25 (patch)
tree8cd8517c0a551e6999552fa85c50b73de2d95bd3 /library/core/src/slice
parentafc404fdfc1559b4ba2846a054347e806bb8f465 (diff)
downloadrust-eae7a186b221bb2b4a4bedeb19d5aca658e91c25.tar.gz
rust-eae7a186b221bb2b4a4bedeb19d5aca658e91c25.zip
Hide internal sort module
Diffstat (limited to 'library/core/src/slice')
-rw-r--r--library/core/src/slice/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs
index 223ba96c475..862a18c3f4a 100644
--- a/library/core/src/slice/mod.rs
+++ b/library/core/src/slice/mod.rs
@@ -31,6 +31,7 @@ pub mod memchr;
     issue = "none",
     reason = "exposed from core to be reused in std;"
 )]
+#[doc(hidden)]
 pub mod sort;
 
 mod ascii;