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

Unified Diff: third_party/WebKit/Source/wtf/text/StringBuilder.h

Issue 2373983006: reflow comments in wtf/text (Closed)
Patch Set: Created 4 years, 3 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/wtf/text/StringBuilder.h
diff --git a/third_party/WebKit/Source/wtf/text/StringBuilder.h b/third_party/WebKit/Source/wtf/text/StringBuilder.h
index da8d5c1f4d62f5acfc82c319cfc285b08100ecb6..f818424ef1484a98438717547f44d6d703505856 100644
--- a/third_party/WebKit/Source/wtf/text/StringBuilder.h
+++ b/third_party/WebKit/Source/wtf/text/StringBuilder.h
@@ -66,9 +66,9 @@ class WTF_EXPORT StringBuilder {
append(other.characters16(), other.m_length);
}
- // NOTE: The semantics of this are different than StringView(..., offset, length)
- // in that an invalid offset or invalid length is a no-op instead of an
- // error.
+ // NOTE: The semantics of this are different than StringView(..., offset,
+ // length) in that an invalid offset or invalid length is a no-op instead of
+ // an error.
// TODO(esprehn): We should probably unify the semantics instead.
void append(const StringView& string, unsigned offset, unsigned length) {
unsigned extent = offset + length;

Powered by Google App Engine
This is Rietveld 408576698