From 64a2d9e7930e4908cd96ebf0e3f6893a47286f86 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 27 Oct 2015 16:37:57 -0700 Subject: [PATCH] Fix misplaced doc comment in plugins/lib.rs --- components/plugins/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index a9fbb4ad280..bb328c9441a 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -36,8 +36,8 @@ use syntax::parse::token::intern; pub mod jstraceable; /// Handles the auto-deriving for `#[derive(HeapSizeOf)]` pub mod heap_size; -/// Autogenerates implementations of Reflectable on DOM structs pub mod lints; +/// Autogenerates implementations of Reflectable on DOM structs pub mod reflector; /// Utilities for writing plugins pub mod casing;