Title: [244822] trunk/Source
Revision
244822
Author
[email protected]
Date
2019-05-01 08:55:10 -0700 (Wed, 01 May 2019)

Log Message

Fix typos: "convering" to "converting".

Modified Paths


Diff

Modified: trunk/Source/WTF/wtf/unicode/UTF8Conversion.cpp (244821 => 244822)


--- trunk/Source/WTF/wtf/unicode/UTF8Conversion.cpp	2019-05-01 15:52:16 UTC (rev 244821)
+++ trunk/Source/WTF/wtf/unicode/UTF8Conversion.cpp	2019-05-01 15:55:10 UTC (rev 244822)
@@ -42,7 +42,7 @@
     for (source = *sourceStart; source < sourceEnd; ++source) {
         UBool sawError = false;
         // Work around bug in either Windows compiler or old version of ICU, where passing a uint8_t to
-        // U8_APPEND warns, by convering from uint8_t to a wider type.
+        // U8_APPEND warns, by converting from uint8_t to a wider type.
         UChar32 character = *source;
         U8_APPEND(reinterpret_cast<uint8_t*>(target), i, targetEnd - *targetStart, character, sawError);
         if (sawError)

Modified: trunk/Source/WebCore/ChangeLog-2010-12-06 (244821 => 244822)


--- trunk/Source/WebCore/ChangeLog-2010-12-06	2019-05-01 15:52:16 UTC (rev 244821)
+++ trunk/Source/WebCore/ChangeLog-2010-12-06	2019-05-01 15:55:10 UTC (rev 244822)
@@ -95190,7 +95190,7 @@
         [chromium] fast/forms/input-file-directory-upload.html fails on win after r63454
         https://bugs.webkit.org/show_bug.cgi?id=42768
 
-        Normalize path separators for the script API by convering \'s to /'s.
+        Normalize path separators for the script API by converting \'s to /'s.
 
         Covered by input-file-directory-upload.html
 

Modified: trunk/Source/WebCore/ChangeLog-2013-04-24 (244821 => 244822)


--- trunk/Source/WebCore/ChangeLog-2013-04-24	2019-05-01 15:52:16 UTC (rev 244821)
+++ trunk/Source/WebCore/ChangeLog-2013-04-24	2019-05-01 15:55:10 UTC (rev 244822)
@@ -42510,7 +42510,7 @@
 
         * platform/graphics/chromium/GraphicsLayerChromium.cpp:
         (WebCore::transformToSkMatrix44):
-          Utility for convering a WebCore::TransformationMatrix to an SkMatrix44.
+          Utility for converting a WebCore::TransformationMatrix to an SkMatrix44.
           Will move to a more common location once it gets more callers.
         (WebCore::GraphicsLayerChromium::updateTransform):
         (WebCore::GraphicsLayerChromium::updateChildrenTransform):
@@ -158891,7 +158891,7 @@
 
         Reviewed by Filip Pizlo.
 
-        In order to avoid unnecessary up convering of 8 bit strings to 16 bits, added 8 bit paths to
+        In order to avoid unnecessary up converting of 8 bit strings to 16 bits, added 8 bit paths to
         parseHTMLInteger() and parseHTMLNonNegativeInteger() by breaking out the core logic into
         templated helper functions.  These methods are primarily used to process attribute values.
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to