Changeset 191777 in webkit


Ignore:
Timestamp:
Oct 29, 2015 10:37:05 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Fix typo in "use strict" in TypedArray builtins
https://bugs.webkit.org/show_bug.cgi?id=150709

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-10-29
Reviewed by Geoffrey Garen.

  • builtins/TypedArray.prototype.js:

(toLocaleString):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r191775 r191777  
     12015-10-29  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Fix typo in "use strict" in TypedArray builtins
     4        https://bugs.webkit.org/show_bug.cgi?id=150709
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * builtins/TypedArray.prototype.js:
     9        (toLocaleString):
     10
    1112015-10-29  Philippe Normand  <pnormand@igalia.com>
    212
  • trunk/Source/JavaScriptCore/builtins/TypedArray.prototype.js

    r191300 r191777  
    273273function toLocaleString()
    274274{
    275     "use strint";
     275    "use strict";
    276276
    277277    var length = @typedArrayLength(this);
Note: See TracChangeset for help on using the changeset viewer.