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

Unified Diff: third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp

Issue 1444173002: third_party/WebKit: fix typos found in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/core/css/MediaQueryEvaluator.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp b/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
index d9a6db185134bde850ef0deb1d3d2e36bd580670..185bee02adf88bed4526d8a97723aba6718fa7c5 100644
--- a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
+++ b/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
@@ -201,7 +201,7 @@ static bool colorIndexMediaFeatureEval(const MediaQueryExpValue& value, MediaFea
if (!value.isValid())
return false;
- // Acording to spec, if the device does not use a color lookup table, the value is zero.
+ // According to spec, if the device does not use a color lookup table, the value is zero.
float number;
return numberValue(value, number) && compareValue(0, static_cast<int>(number), op);
}

Powered by Google App Engine
This is Rietveld 408576698