diff options
author | Rohit Burra <iamrohit7@gmail.com> | 2016-10-30 20:01:53 +0530 |
---|---|---|
committer | Rohit Burra <iamrohit7@gmail.com> | 2016-11-01 11:35:40 +0530 |
commit | 32ba45ab6fe350c70aaad0ed29b66995571186c7 (patch) | |
tree | 0eca8fd42fcf72b7bb72e083003c58ae8cb57673 /components/plugins | |
parent | c4cb3f345bfba617fd090454b842437014dd269d (diff) | |
download | servo-32ba45ab6fe350c70aaad0ed29b66995571186c7.tar.gz servo-32ba45ab6fe350c70aaad0ed29b66995571186c7.zip |
Fix tidy issues
Diffstat (limited to 'components/plugins')
-rw-r--r-- | components/plugins/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index 30009d63aeb..e62243e8024 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -13,7 +13,8 @@ //! - `#[dom_struct]` : Implies `#[privatize]`,`#[derive(JSTraceable)]`, and `#[must_root]`. //! Use this for structs that correspond to a DOM type -#![feature(plugin_registrar, quote, plugin, box_syntax, rustc_private, slice_patterns)] + +#![feature(box_syntax, plugin, plugin_registrar, quote, rustc_private, slice_patterns)] #![deny(unsafe_code)] |