style: Fix misindented code in font.mako.rs.

This commit is contained in:
Emilio Cobos Álvarez 2017-06-24 09:31:07 +02:00
parent bc3ec0ce1b
commit 26f4e2bf51
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -902,9 +902,9 @@ ${helpers.single_keyword_system("font-variant-caps",
#[inline] #[inline]
fn from_computed_value(computed: &computed_value::T) -> Self { fn from_computed_value(computed: &computed_value::T) -> Self {
SpecifiedValue::Length(LengthOrPercentage::Length( SpecifiedValue::Length(LengthOrPercentage::Length(
ToComputedValue::from_computed_value(computed) ToComputedValue::from_computed_value(computed)
)) ))
} }
} }