From c9ffd9b429ba05f80b4a3be92ff1740826b7d096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 2 Jan 2017 00:33:56 +0100 Subject: [PATCH] style: Allow the `logical_geometry` module to be undocumented, for now. --- components/style/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/components/style/lib.rs b/components/style/lib.rs index 1d3091ca60a..55e6124ad35 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -105,6 +105,7 @@ pub mod font_metrics; #[cfg(feature = "gecko")] #[allow(unsafe_code)] pub mod gecko; #[cfg(feature = "gecko")] #[allow(unsafe_code)] pub mod gecko_bindings; pub mod keyframes; +#[allow(missing_docs)] // TODO. pub mod logical_geometry; pub mod matching; #[allow(missing_docs)]