diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-25 22:01:04 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-25 22:01:04 +0100 |
commit | 238f3e2d9189238145151be84b3e3496fabf6853 (patch) | |
tree | 0ad8daa867b4bac56b1bf5dc4c5536d2209d9373 /components/script/lib.rs | |
parent | 1cf7441c614fa989313ec5b6b20d6a2b6cd009a6 (diff) | |
download | servo-238f3e2d9189238145151be84b3e3496fabf6853.tar.gz servo-238f3e2d9189238145151be84b3e3496fabf6853.zip |
Require documentation for all code in dom::bindings (excluding dom::bindings::codegen).
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index a3c528df29c..5c1f6a16d8f 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -54,6 +54,7 @@ pub mod dom { /// The code to expose the DOM to JavaScript through IDL bindings. #[allow(unsafe_blocks)] + #[deny(missing_docs)] pub mod bindings { pub mod cell; pub mod global; @@ -69,6 +70,7 @@ pub mod dom { pub mod trace; /// Generated JS-Rust bindings. + #[allow(missing_docs)] pub mod codegen { #[allow(unrooted_must_root)] pub mod Bindings; |