about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMátyás Mustoha <mmatyas@inf.u-szeged.hu>2015-02-12 12:40:16 +0100
committerMátyás Mustoha <mmatyas@inf.u-szeged.hu>2015-02-12 12:40:16 +0100
commit7eecb94028758e67a452da60b5e7090e50b24da8 (patch)
tree23f2326a78bf7960e54b641ee46cdb290bcfbf5e
parent0fdca30fcb2303966ad2529b7a3b0599088c105d (diff)
downloadrust-7eecb94028758e67a452da60b5e7090e50b24da8.tar.gz
rust-7eecb94028758e67a452da60b5e7090e50b24da8.zip
Fixed a tiny typo in the documentation of std::char.
-rw-r--r--src/libunicode/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs
index 54c8fcd205b..0ac569b9c8e 100644
--- a/src/libunicode/lib.rs
+++ b/src/libunicode/lib.rs
@@ -60,7 +60,7 @@ mod u_str;
 /// As such, only values in the ranges \[0x0,0xD7FF\] and \[0xE000,0x10FFFF\]
 /// (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..
+/// and, as such, should be performed via the `from_u32` function.
 #[stable(feature = "rust1", since = "1.0.0")]
 pub mod char {
     pub use core::char::{MAX, from_u32, from_digit};