diff options
| author | binarycat <binarycat@envs.net> | 2025-06-20 11:09:45 -0500 |
|---|---|---|
| committer | binarycat <binarycat@envs.net> | 2025-06-20 11:11:51 -0500 |
| commit | 8d18f3d609e9e31da8a3c2bb1613499d5ba0fe9a (patch) | |
| tree | 8773f4a92ff92000ca400f79fc4b62ebd9e9e43a /library/core/src/ascii.rs | |
| parent | 255aa220821c05c3eac7605fce4ea1c9ab2cbdb4 (diff) | |
| download | rust-8d18f3d609e9e31da8a3c2bb1613499d5ba0fe9a.tar.gz rust-8d18f3d609e9e31da8a3c2bb1613499d5ba0fe9a.zip | |
add doc(alias("AsciiChar")) to core::ascii::Char
Added it to the reexported, which is intended rustdoc behavior, but is apparently untested, so I also added a test for it.
Diffstat (limited to 'library/core/src/ascii.rs')
| -rw-r--r-- | library/core/src/ascii.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/core/src/ascii.rs b/library/core/src/ascii.rs index d3c6c046e71..f5e62803043 100644 --- a/library/core/src/ascii.rs +++ b/library/core/src/ascii.rs @@ -15,6 +15,7 @@ use crate::iter::FusedIterator; use crate::num::NonZero; mod ascii_char; +#[doc(alias("AsciiChar"))] #[unstable(feature = "ascii_char", issue = "110998")] pub use ascii_char::AsciiChar as Char; |
