Ignore:
Timestamp:
Aug 28, 2021, 6:48:21 PM (4 years ago)
Author:
Cameron McCormack
Message:

Miscellaneous typo fixes
https://bugs.webkit.org/show_bug.cgi?id=229642

Reviewed by Fujii Hironori.

Source/JavaScriptCore:

  • API/JSValue.h:
  • runtime/RegExp.cpp:

(JSC::RegExp::matchCompareWithInterpreter):

Source/WebCore:

  • platform/MIMETypeRegistry.cpp:

(WebCore::MIMETypeRegistry::isSupportedImageMIMEType):

  • platform/graphics/cpu/arm/filters/FELightingNEON.cpp:
  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::computeClipPath const):

  • rendering/style/RenderStyle.cpp:

(WebCore::rareNonInheritedDataChangeRequiresLayout):

Source/WebKit:

  • Platform/IPC/HandleMessage.h:

(IPC::callMemberFunction):

  • Shared/Cocoa/ArgumentCodersCocoa.mm:

(IPC::encodeArrayInternal):

  • Shared/cf/ArgumentCodersCF.cpp:

(IPC::ArgumentCoder<CFArrayRef>::encode):

Source/WTF:

  • wtf/CrossThreadTask.h:

(WTF::callMemberFunctionForCrossThreadTask):

  • wtf/text/StringImpl.h:

(WTF::StringImpl::createSubstringSharingImpl):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/RegExp.cpp

    r280452 r281737  
    378378
    379379    // Initialize interpreterOffsetVector with the return value (index 0) and the
    380     // first subpattern start indicies (even index values) set to -1.
    381     // No need to init the subpattern end indicies.
     380    // first subpattern start indices (even index values) set to -1.
     381    // No need to init the subpattern end indices.
    382382    for (unsigned j = 0, i = 0; i < m_numSubpatterns + 1; j += 2, i++)
    383383        interpreterOffsetVector[j] = -1;
Note: See TracChangeset for help on using the changeset viewer.