From 7ad3ac054ae399412aba18663f39b4c76ef30f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sun, 1 Jan 2017 22:12:00 +0100 Subject: [PATCH] style: Document the servo-specific module. --- components/style/servo/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/style/servo/mod.rs b/components/style/servo/mod.rs index fd7f1b7c566..29025b432a7 100644 --- a/components/style/servo/mod.rs +++ b/components/style/servo/mod.rs @@ -2,5 +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/. */ +//! Servo-specific bits of the style system. +//! +//! These get compiled out on a Gecko build. + pub mod restyle_damage; pub mod selector_parser;