Skip to content

Commit

Permalink
Fix tidy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit Burra committed Nov 1, 2016
1 parent c4cb3f3 commit 32ba45a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/net/lib.rs
Expand Up @@ -2,9 +2,9 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(custom_derive)]
#![feature(box_syntax)]
#![feature(fnbox)]
#![feature(mpsc_select)]
#![feature(plugin)]
Expand Down
3 changes: 2 additions & 1 deletion components/plugins/lib.rs
Expand Up @@ -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)]

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/style/lib.rs
Expand Up @@ -3,8 +3,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#![cfg(test)]
#![feature(plugin)]
#![feature(core_intrinsics)]
#![feature(plugin)]

extern crate app_units;
extern crate cssparser;
Expand Down

0 comments on commit 32ba45a

Please sign in to comment.