about summary refs log tree commit diff
path: root/src/libstd/fmt/parse.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-12 19:02:46 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-15 22:27:10 -0700
commita84c2999c91f6ea43291006288ea6dd8c4852c3b (patch)
tree58ed8bd6c4fcde8731b6439cee3b8740df361015 /src/libstd/fmt/parse.rs
parent4d2a402555aedd04affc978ef05324df7550fd07 (diff)
downloadrust-a84c2999c91f6ea43291006288ea6dd8c4852c3b.tar.gz
rust-a84c2999c91f6ea43291006288ea6dd8c4852c3b.zip
Require module documentation with missing_doc
Closes #9824
Diffstat (limited to 'src/libstd/fmt/parse.rs')
-rw-r--r--src/libstd/fmt/parse.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/fmt/parse.rs b/src/libstd/fmt/parse.rs
index a95bd563a81..1b8998b5c6c 100644
--- a/src/libstd/fmt/parse.rs
+++ b/src/libstd/fmt/parse.rs
@@ -8,6 +8,12 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+//! Parsing of format strings
+//!
+//! These structures are used when parsing format strings for the compiler.
+//! Parsing does not currently happen at runtime (structures of std::fmt::rt are
+//! generated instead).
+
 use prelude::*;
 
 use char;