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

Unified Diff: third_party/WebKit/Source/modules/encoding/Encoding.cpp

Issue 2392443007: reflow comments in modules/[app_banner,encoding] (Closed)
Patch Set: Created 4 years, 2 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/modules/encoding/Encoding.cpp
diff --git a/third_party/WebKit/Source/modules/encoding/Encoding.cpp b/third_party/WebKit/Source/modules/encoding/Encoding.cpp
index 327b3d5764c8821bdfcffd5490845b0b0419fa06..cd8625b2a6b66ad0e2923a7fd87b9c2bf9849673 100644
--- a/third_party/WebKit/Source/modules/encoding/Encoding.cpp
+++ b/third_party/WebKit/Source/modules/encoding/Encoding.cpp
@@ -10,7 +10,8 @@ namespace Encoding {
bool isASCIIWhiteSpace(UChar c) {
// From Encoding Standard:
- // "The ASCII whitespace are code points U+0009, U+000A, U+000C, U+000D, and U+0020."
+ // "The ASCII whitespace are code points U+0009, U+000A, U+000C, U+000D, and
+ // U+0020."
return c == 0x09 || c == 0x0A || c == 0x0C || c == 0x0D || c == 0x20;
}

Powered by Google App Engine
This is Rietveld 408576698