Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: third_party/WebKit/Source/devtools/front_end/formatter_worker/CSSRuleParser.js

Issue 2157963002: Improve grammar in some comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: maxiumum Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698