style: stylistic nit. be consistent on how we write inline annotations.

This commit is contained in:
Emilio Cobos Álvarez 2016-07-01 16:03:55 -07:00 committed by Emilio Cobos Álvarez
parent 8ba676533b
commit 3a4539f043
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -25,7 +25,8 @@
use cssparser; use cssparser;
pub type T = cssparser::RGBA; 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 */ RGBA { red: 0., green: 0., blue: 0., alpha: 1. } /* black */
} }
pub fn parse_specified(_context: &ParserContext, input: &mut Parser) pub fn parse_specified(_context: &ParserContext, input: &mut Parser)