| 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;
|
|
|