Changeset 197239 in webkit


Ignore:
Timestamp:
Feb 26, 2016 10:11:59 PM (8 years ago)
Author:
Michael Catanzaro
Message:

Fix a typo.

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

  • WebProcess/UserContent/WebUserContentController.cpp:

(WebKit::WebUserContentController::removeUserContentWorld):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r197238 r197239  
     12016-02-26  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fix a typo.
     4
     5        Unreviewed. Shame I didn't notice in the previous commit.
     6
     7        * WebProcess/UserContent/WebUserContentController.cpp:
     8        (WebKit::WebUserContentController::removeUserContentWorld):
     9
    1102016-02-26  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.cpp

    r197238 r197239  
    113113    auto it = worldMap().find(worldIdentifier);
    114114    if (it == worldMap().end()) {
    115         WTFLogAlways("Trying to remove a UserContentWorld (id=%" PRIu64 ") that is does not exist.", worldIdentifier);
     115        WTFLogAlways("Trying to remove a UserContentWorld (id=%" PRIu64 ") that does not exist.", worldIdentifier);
    116116        return;
    117117    }
Note: See TracChangeset for help on using the changeset viewer.