diff options
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 f24bd11a82e..aab99ec9106 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -56,6 +56,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; @@ -71,6 +72,7 @@ pub mod dom { pub mod trace; /// Generated JS-Rust bindings. + #[allow(missing_docs)] pub mod codegen { #[allow(unrooted_must_root)] pub mod Bindings; |