Title: [197239] trunk/Source/WebKit2
Revision
197239
Author
[email protected]
Date
2016-02-26 22:11:59 -0800 (Fri, 26 Feb 2016)

Log Message

Fix a typo.

Unreviewed. Shame I didn't notice in the previous commit.

* WebProcess/UserContent/WebUserContentController.cpp:
(WebKit::WebUserContentController::removeUserContentWorld):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (197238 => 197239)


--- trunk/Source/WebKit2/ChangeLog	2016-02-27 06:09:55 UTC (rev 197238)
+++ trunk/Source/WebKit2/ChangeLog	2016-02-27 06:11:59 UTC (rev 197239)
@@ -1,5 +1,14 @@
 2016-02-26  Michael Catanzaro  <[email protected]>
 
+        Fix a typo.
+
+        Unreviewed. Shame I didn't notice in the previous commit.
+
+        * WebProcess/UserContent/WebUserContentController.cpp:
+        (WebKit::WebUserContentController::removeUserContentWorld):
+
+2016-02-26  Michael Catanzaro  <[email protected]>
+
         Fix GTK and maybe EFL build after r197172.
 
         Unreviewed.

Modified: trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.cpp (197238 => 197239)


--- trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.cpp	2016-02-27 06:09:55 UTC (rev 197238)
+++ trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.cpp	2016-02-27 06:11:59 UTC (rev 197239)
@@ -112,7 +112,7 @@
 
     auto it = worldMap().find(worldIdentifier);
     if (it == worldMap().end()) {
-        WTFLogAlways("Trying to remove a UserContentWorld (id=%" PRIu64 ") that is does not exist.", worldIdentifier);
+        WTFLogAlways("Trying to remove a UserContentWorld (id=%" PRIu64 ") that does not exist.", worldIdentifier);
         return;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to