diff options
author | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
---|---|---|
committer | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
commit | 6565e7b02fafea933e27e59bed1db876b56ac005 (patch) | |
tree | 0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/plugins/lib.rs | |
parent | e81e91207cb87ade4eeaa99917eaecd0f5ecd00d (diff) | |
download | servo-6565e7b02fafea933e27e59bed1db876b56ac005.tar.gz servo-6565e7b02fafea933e27e59bed1db876b56ac005.zip |
Issue #7390 correct the order of mod declaration
Diffstat (limited to 'components/plugins/lib.rs')
-rw-r--r-- | components/plugins/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index 5a87cd32ce1..4124d552988 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -37,11 +37,11 @@ pub mod jstraceable; /// Handles the auto-deriving for `#[derive(HeapSizeOf)]` pub mod heap_size; /// Autogenerates implementations of Reflectable on DOM structs -pub mod reflector; pub mod lints; +pub mod reflector; /// Utilities for writing plugins -pub mod utils; pub mod casing; +pub mod utils; #[plugin_registrar] pub fn plugin_registrar(reg: &mut Registry) { |