about summary refs log tree commit diff
path: root/src/libstd/task
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-05-28 16:35:52 -0500
committerAlex Crichton <alex@alexcrichton.com>2013-05-30 01:02:55 -0500
commit007651cd267ee8af88384d968183a1dee0265919 (patch)
treedac8928949cf8c96c6d546f3a0a4b592f0ab9ee9 /src/libstd/task
parent4a5d887b58ff9833a968e7a0d28282b915e01de8 (diff)
downloadrust-007651cd267ee8af88384d968183a1dee0265919.tar.gz
rust-007651cd267ee8af88384d968183a1dee0265919.zip
Require documentation by default for libstd
Adds documentation for various things that I understand.
Adds #[allow(missing_doc)] for lots of things that I don't understand.
Diffstat (limited to 'src/libstd/task')
-rw-r--r--src/libstd/task/local_data_priv.rs2
-rw-r--r--src/libstd/task/mod.rs2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/libstd/task/local_data_priv.rs b/src/libstd/task/local_data_priv.rs
index d3757ea3f4f..f6b14a51539 100644
--- a/src/libstd/task/local_data_priv.rs
+++ b/src/libstd/task/local_data_priv.rs
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+#[allow(missing_doc)];
+
 use cast;
 use cmp::Eq;
 use libc;
diff --git a/src/libstd/task/mod.rs b/src/libstd/task/mod.rs
index 9c9a91f9548..28fb73e6eef 100644
--- a/src/libstd/task/mod.rs
+++ b/src/libstd/task/mod.rs
@@ -33,6 +33,8 @@
  * ~~~
  */
 
+#[allow(missing_doc)];
+
 use prelude::*;
 
 use cast;