diff options
| author | bors <bors@rust-lang.org> | 2015-02-14 13:08:33 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-02-14 13:08:33 +0000 |
| commit | 3d1c1added595c1c3410a1b72d8f0134942e4e24 (patch) | |
| tree | 872830cadf3fbb0bf47b15245a698d09a466cf84 | |
| parent | df54632601ee01b1ff0e608d9e33fc865c1f2598 (diff) | |
| parent | 58764bc384d44d37cff7e74fd22714cb28e71040 (diff) | |
| download | rust-3d1c1added595c1c3410a1b72d8f0134942e4e24.tar.gz rust-3d1c1added595c1c3410a1b72d8f0134942e4e24.zip | |
Auto merge of #22114 - alexcrichton:issue-22084, r=steveklabnik
This ended up just being a forgotten attribute on the `char` module in libunicode. Closes #22084
| -rw-r--r-- | src/libunicode/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 0ac569b9c8e..a8fe7e8bd13 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}; |
