From f45c6b878ff11ca7d1927f330ee6f2c878893b29 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Fri, 3 May 2013 09:20:01 +0300 Subject: [PATCH] Add a brief description to show up in http://static.rust-lang.org/doc/core/index.html --- src/libcore/str/ascii.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcore/str/ascii.rs b/src/libcore/str/ascii.rs index 9180c995ca28c..73f556518fa66 100644 --- a/src/libcore/str/ascii.rs +++ b/src/libcore/str/ascii.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +//! Operations on ASCII strings and characters. + use to_str::{ToStr,ToStrConsume}; use str; use cast;