From 26f4e2bf513eac7e883ba0dd7d58aff704212280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 24 Jun 2017 09:31:07 +0200 Subject: [PATCH] style: Fix misindented code in font.mako.rs. --- components/style/properties/longhand/font.mako.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/style/properties/longhand/font.mako.rs b/components/style/properties/longhand/font.mako.rs index c2082af3ef97..7899cadb55cd 100644 --- a/components/style/properties/longhand/font.mako.rs +++ b/components/style/properties/longhand/font.mako.rs @@ -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) + )) } }