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

Unified Diff: third_party/WebKit/Source/wtf/ThreadingWin.cpp

Issue 1444173002: third_party/WebKit: fix typos found in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/ThreadingWin.cpp
diff --git a/third_party/WebKit/Source/wtf/ThreadingWin.cpp b/third_party/WebKit/Source/wtf/ThreadingWin.cpp
index 7128858bcca5fd0248ce20caffa4fec3ee6c98e4..21f9f3f1f5456f770be3b799e083c36a97112678 100644
--- a/third_party/WebKit/Source/wtf/ThreadingWin.cpp
+++ b/third_party/WebKit/Source/wtf/ThreadingWin.cpp
@@ -240,7 +240,7 @@ bool PlatformCondition::timedWait(PlatformMutex& mutex, DWORD durationMillisecon
--m_waitersToUnblock;
} else if (++m_waitersGone == (INT_MAX / 2)) {
// timeout/canceled or spurious semaphore timeout or spurious wakeup
- // occured, normalize the m_waitersGone count this may occur if many
+ // occurred, normalize the m_waitersGone count this may occur if many
// calls to wait with a timeout are made and no call to notify_* is made
res = WaitForSingleObject(m_blockLock, INFINITE);
ASSERT_UNUSED(res, res == WAIT_OBJECT_0);

Powered by Google App Engine
This is Rietveld 408576698