From 4b07af2240764e91ae6fd563940e4e7bb6f1fbe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 18 Mar 2019 16:38:48 +0000 Subject: [PATCH] style: Make cssPropertySupportsType take an enum. Differential Revision: https://phabricator.services.mozilla.com/D22427 --- components/style_traits/specified_value_info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style_traits/specified_value_info.rs b/components/style_traits/specified_value_info.rs index 3cb59e796c4..c978727b47a 100644 --- a/components/style_traits/specified_value_info.rs +++ b/components/style_traits/specified_value_info.rs @@ -10,7 +10,7 @@ use std::sync::Arc as StdArc; /// Type of value that a property supports. This is used by Gecko's /// devtools to make sense about value it parses, and types listed -/// here should match TYPE_* constants in InspectorUtils.webidl. +/// here should match InspectorPropertyType in InspectorUtils.webidl. /// /// XXX This should really be a bitflags rather than a namespace mod, /// but currently we cannot use bitflags in const.