Title: [191777] trunk/Source/_javascript_Core
Revision
191777
Author
commit-qu...@webkit.org
Date
2015-10-29 22:37:05 -0700 (Thu, 29 Oct 2015)

Log Message

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

Patch by Joseph Pecoraro <pecor...@apple.com> on 2015-10-29
Reviewed by Geoffrey Garen.

* builtins/TypedArray.prototype.js:
(toLocaleString):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (191776 => 191777)


--- trunk/Source/_javascript_Core/ChangeLog	2015-10-30 04:55:12 UTC (rev 191776)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-10-30 05:37:05 UTC (rev 191777)
@@ -1,3 +1,13 @@
+2015-10-29  Joseph Pecoraro  <pecor...@apple.com>
+
+        Fix typo in "use strict" in TypedArray builtins
+        https://bugs.webkit.org/show_bug.cgi?id=150709
+
+        Reviewed by Geoffrey Garen.
+
+        * builtins/TypedArray.prototype.js:
+        (toLocaleString):
+
 2015-10-29  Philippe Normand  <pnorm...@igalia.com>
 
         [GTK][Mac] disable OBJC JSC API

Modified: trunk/Source/_javascript_Core/builtins/TypedArray.prototype.js (191776 => 191777)


--- trunk/Source/_javascript_Core/builtins/TypedArray.prototype.js	2015-10-30 04:55:12 UTC (rev 191776)
+++ trunk/Source/_javascript_Core/builtins/TypedArray.prototype.js	2015-10-30 05:37:05 UTC (rev 191777)
@@ -272,7 +272,7 @@
 
 function toLocaleString()
 {
-    "use strint";
+    "use strict";
 
     var length = @typedArrayLength(this);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to