diff options
| author | ltdk <usr@ltdk.xyz> | 2025-08-13 01:29:34 -0400 |
|---|---|---|
| committer | ltdk <usr@ltdk.xyz> | 2025-08-13 12:27:44 -0400 |
| commit | c855a2f4d65fd45c346993b9ea4c5e3703344272 (patch) | |
| tree | a6e40a7a799024037d364a9b4a16a6f9581e6415 /library/core/src | |
| parent | 8e62bfd311791bfd9dca886abdfbab07ec54d8b4 (diff) | |
| download | rust-c855a2f4d65fd45c346993b9ea4c5e3703344272.tar.gz rust-c855a2f4d65fd45c346993b9ea4c5e3703344272.zip | |
Hide docs for core::unicode
Diffstat (limited to 'library/core/src')
| -rw-r--r-- | library/core/src/unicode/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/unicode/mod.rs b/library/core/src/unicode/mod.rs index 49dbdeb1a6d..191fe7711f9 100644 --- a/library/core/src/unicode/mod.rs +++ b/library/core/src/unicode/mod.rs @@ -1,5 +1,6 @@ +//! Unicode internals used in liballoc and libstd. Not public API. #![unstable(feature = "unicode_internals", issue = "none")] -#![allow(missing_docs)] +#![doc(hidden)] // for use in alloc, not re-exported in std. #[rustfmt::skip] @@ -31,5 +32,4 @@ mod unicode_data; /// /// The version numbering scheme is explained in /// [Unicode 11.0 or later, Section 3.1 Versions of the Unicode Standard](https://www.unicode.org/versions/Unicode11.0.0/ch03.pdf#page=4). -#[stable(feature = "unicode_version", since = "1.45.0")] pub const UNICODE_VERSION: (u8, u8, u8) = unicode_data::UNICODE_VERSION; |
