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

Unified Diff: third_party/WebKit/Source/platform/text/TextBoundaries.cpp

Issue 1444173002: third_party/WebKit: fix typos found in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CL Description change, Typo patch apply to upstream master. Created 5 years 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/platform/text/TextBoundaries.cpp
diff --git a/third_party/WebKit/Source/platform/text/TextBoundaries.cpp b/third_party/WebKit/Source/platform/text/TextBoundaries.cpp
index 5228f9ab28e60de45cc1725564a1f35c0514a6bf..f6e97b4600295c02d00df48997b1dd2c8188d20f 100644
--- a/third_party/WebKit/Source/platform/text/TextBoundaries.cpp
+++ b/third_party/WebKit/Source/platform/text/TextBoundaries.cpp
@@ -66,7 +66,7 @@ int findNextWordFromIndex(const UChar* chars, int len, int position, bool forwar
if (forward) {
position = it->following(position);
while (position != TextBreakDone) {
- // We stop searching when the character preceeding the break
+ // We stop searching when the character preceding the break
// is alphanumeric.
if (position < len && isAlphanumeric(chars[position - 1]))
return position;

Powered by Google App Engine
This is Rietveld 408576698