diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-05-28 16:35:52 -0500 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-05-30 01:02:55 -0500 |
| commit | 007651cd267ee8af88384d968183a1dee0265919 (patch) | |
| tree | dac8928949cf8c96c6d546f3a0a4b592f0ab9ee9 /src/libstd/sys.rs | |
| parent | 4a5d887b58ff9833a968e7a0d28282b915e01de8 (diff) | |
| download | rust-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/sys.rs')
| -rw-r--r-- | src/libstd/sys.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/sys.rs b/src/libstd/sys.rs index 137070ce202..5d020e229e2 100644 --- a/src/libstd/sys.rs +++ b/src/libstd/sys.rs @@ -10,6 +10,8 @@ //! Misc low level stuff +#[allow(missing_doc)]; + use option::{Some, None}; use cast; use cmp::{Eq, Ord}; |
