From 7eecb94028758e67a452da60b5e7090e50b24da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Thu, 12 Feb 2015 12:40:16 +0100 Subject: [PATCH] Fixed a tiny typo in the documentation of std::char. --- src/libunicode/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 54c8fcd205b8f..0ac569b9c8ea3 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};