about summary refs log tree commit diff
path: root/src/libunicode
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2015-01-08 00:26:21 -0800
committerAaron Turon <aturon@mozilla.com>2015-01-08 00:26:21 -0800
commite7d00ebec7138605ea7d4c826ea4cc92a2f800ce (patch)
treea8d02e4e313fe05cf1a401ba7e43347972a84eb2 /src/libunicode
parent5b3cd3900ceda838f5798c30ab96ceb41f962534 (diff)
downloadrust-e7d00ebec7138605ea7d4c826ea4cc92a2f800ce.tar.gz
rust-e7d00ebec7138605ea7d4c826ea4cc92a2f800ce.zip
Add missing module stability attributes
Diffstat (limited to 'src/libunicode')
-rw-r--r--src/libunicode/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs
index 33b5bc4b5a4..27255cc33ee 100644
--- a/src/libunicode/lib.rs
+++ b/src/libunicode/lib.rs
@@ -57,6 +57,7 @@ mod u_str;
 /// (inclusive) are allowed. A `char` can always be safely cast to a `u32`;
 /// 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]
 pub mod char {
     pub use core::char::{MAX, from_u32, from_digit};