diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-12-14 08:31:30 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-12-28 13:17:47 +0100 |
commit | be69f9c3e6a6f5efb5ba1edd50955cb12c111bf8 (patch) | |
tree | db8be2dfee5cff6ef0c42e8d46c623eb87529e5a /components/script/lib.rs | |
parent | 82fc6d9f49a657e2857da3f1b22140e3b6efdf09 (diff) | |
download | servo-be69f9c3e6a6f5efb5ba1edd50955cb12c111bf8.tar.gz servo-be69f9c3e6a6f5efb5ba1edd50955cb12c111bf8.zip |
Rustfmt has changed its default style :/
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index b51de15e5ce..2454fff090e 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -12,10 +12,7 @@ #![allow(non_snake_case)] #![doc = "The script crate contains all matters DOM."] #![plugin(script_plugins)] -#![cfg_attr( - not(feature = "unrooted_must_root_lint"), - allow(unknown_lints) -)] +#![cfg_attr(not(feature = "unrooted_must_root_lint"), allow(unknown_lints))] #[macro_use] extern crate bitflags; |