diff options
| author | mr.Shu <mr@shu.io> | 2014-02-10 15:36:31 +0100 |
|---|---|---|
| committer | mr.Shu <mr@shu.io> | 2014-02-21 08:11:52 +0100 |
| commit | 70319f7b25e53d886cf15a33d2edb5220b1f736b (patch) | |
| tree | fb1c802cf0dda90bf3895bf84ff14cf4af5da8d5 /src/librustdoc/html | |
| parent | d70f909fa3bdc1c8231f127882cc30f274b263d1 (diff) | |
| download | rust-70319f7b25e53d886cf15a33d2edb5220b1f736b.tar.gz rust-70319f7b25e53d886cf15a33d2edb5220b1f736b.zip | |
Changed NonCamelCaseTypes lint to warn by default
Added allow(non_camel_case_types) to librustc where necesary Tried to fix problems with non_camel_case_types outside rustc fixed failing tests Docs updated Moved #[allow(non_camel_case_types)] a level higher. markdown.rs reverted Fixed timer that was failing tests Fixed another timer
Diffstat (limited to 'src/librustdoc/html')
| -rw-r--r-- | src/librustdoc/html/markdown.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustdoc/html/markdown.rs b/src/librustdoc/html/markdown.rs index 3668d4d3a2c..af0a43efa14 100644 --- a/src/librustdoc/html/markdown.rs +++ b/src/librustdoc/html/markdown.rs @@ -24,6 +24,8 @@ //! // ... something using html //! ``` +#[allow(non_camel_case_types)]; + use std::cast; use std::fmt; use std::io; |
