From 3a4539f04338a0897cc768b93fe5f9f4a0461554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 1 Jul 2016 16:03:55 -0700 Subject: [PATCH] style: stylistic nit. be consistent on how we write inline annotations. --- components/style/properties/longhand/color.mako.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/style/properties/longhand/color.mako.rs b/components/style/properties/longhand/color.mako.rs index 31368dbe9eeb..1f3831517aba 100644 --- a/components/style/properties/longhand/color.mako.rs +++ b/components/style/properties/longhand/color.mako.rs @@ -25,7 +25,8 @@ use cssparser; pub type T = cssparser::RGBA; } - #[inline] pub fn get_initial_value() -> computed_value::T { + #[inline] + pub fn get_initial_value() -> computed_value::T { RGBA { red: 0., green: 0., blue: 0., alpha: 1. } /* black */ } pub fn parse_specified(_context: &ParserContext, input: &mut Parser)