From 58764bc384d44d37cff7e74fd22714cb28e71040 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 9 Feb 2015 08:40:36 -0800 Subject: [PATCH] std: Display primitive documentation for char This ended up just being a forgotten attribute on the `char` module in libunicode. Closes #22084 --- src/libunicode/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 54c8fcd205b..e2263465e56 100644 --- a/src/libunicode/lib.rs +++ b/src/libunicode/lib.rs @@ -62,6 +62,7 @@ mod u_str; /// however the converse is not always true due to the above range limits /// and, as such, should be performed via the `from_u32` function.. #[stable(feature = "rust1", since = "1.0.0")] +#[doc(primitive = "char")] pub mod char { pub use core::char::{MAX, from_u32, from_digit};