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

Unified Diff: third_party/WebKit/Source/core/events/EventListenerMap.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/core/events/EventListenerMap.cpp
diff --git a/third_party/WebKit/Source/core/events/EventListenerMap.cpp b/third_party/WebKit/Source/core/events/EventListenerMap.cpp
index 8e25e6810d7ceeb698ad9fb2b13fbf7c4ab14760..e7e1760931fdf2078480d5c99d77a8f775749f95 100644
--- a/third_party/WebKit/Source/core/events/EventListenerMap.cpp
+++ b/third_party/WebKit/Source/core/events/EventListenerMap.cpp
@@ -172,7 +172,7 @@ EventListenerVector* EventListenerMap::find(const AtomicString& eventType)
static void copyListenersNotCreatedFromMarkupToTarget(const AtomicString& eventType, EventListenerVector* listenerVector, EventTarget* target)
{
for (const auto& eventListener : *listenerVector) {
- // Event listeners created from markup have already been transfered to the shadow tree during cloning.
+ // Event listeners created from markup have already been transferred to the shadow tree during cloning.
if (eventListener.listener->wasCreatedFromMarkup())
continue;
EventListenerOptions options = eventListener.options();

Powered by Google App Engine
This is Rietveld 408576698