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

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

Issue 2143483002: Use the single char overload of append() when possible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/core/css/CSSGridAutoRepeatValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.cpp b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.cpp
index 238c6edde019b02ef4365f28b0b96cab68db3be3..a27a58613caabd5c264d3b6033444da6727b1982 100644
--- a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.cpp
@@ -15,7 +15,7 @@ String CSSGridAutoRepeatValue::customCSSText() const
result.append(getValueName(autoRepeatID()));
result.append(", ");
result.append(CSSValueList::customCSSText());
- result.append(")");
+ result.append(')');
return result.toString();
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698