Auto merge of #17507 - emilio:font-indent, r=nox

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

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17507)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-06-24 01:22:45 -07:00 committed by GitHub
commit d58d1ddbbd

View file

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