From 7178e9bf69e58501a8d8d1ed6cd0924d06463372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 5 Feb 2018 04:04:45 +0100 Subject: [PATCH] style: Remove stray space. --- components/style/custom_properties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/custom_properties.rs b/components/style/custom_properties.rs index 938a1d85d6e..ae16a4437bb 100644 --- a/components/style/custom_properties.rs +++ b/components/style/custom_properties.rs @@ -678,7 +678,7 @@ fn substitute_all(custom_properties_map: &mut CustomPropertiesMap) { // Some shortcut checks. let (name, value) = if let Some(value) = context.map.get(&name) { // This variable has been resolved. Return the signal value. - if value.references.is_empty() || context.invalid.contains(&name) { + if value.references.is_empty() || context.invalid.contains(&name) { return None; } // Whether this variable has been visited in this traversal.