Index: third_party/WebKit/Source/devtools/front_end/formatter_worker/CSSRuleParser.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/formatter_worker/CSSRuleParser.js b/third_party/WebKit/Source/devtools/front_end/formatter_worker/CSSRuleParser.js |
index 7240a11f02dc5b129072228e734f4cf9ebf41036..831b18872eb4ea46b62c394b26db637301e740e1 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/formatter_worker/CSSRuleParser.js |
+++ b/third_party/WebKit/Source/devtools/front_end/formatter_worker/CSSRuleParser.js |
@@ -102,7 +102,7 @@ WebInspector._innerParseCSS = function(text, chunkCallback) |
rules.push(rule); |
state = WebInspector.CSSParserStates.Initial; |
} else if (tokenType["comment"]) { |
- // The |processToken| is called per-line, so no token spans more then one line. |
+ // The |processToken| is called per-line, so no token spans more than one line. |
// Support only a one-line comments. |
if (tokenValue.substring(0, 2) !== "/*" || tokenValue.substring(tokenValue.length - 2) !== "*/") |
break; |