Skip to content

Commit 39198fd

Browse files
Merge pull request #2698 from SergioCrisostomo/fix-typo
fix typo
2 parents b6fdbb9 + a6d8c6d commit 39198fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Core/Core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ for (var i in {toString: 1}) enumerables = null;
6565
if (enumerables) enumerables = ['hasOwnProperty', 'valueOf', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'constructor'];
6666
function forEachObjectEnumberableKey(object, fn, bind) {
6767
if (enumerables) for (var i = enumerables.length; i--;){
68-
var k = enumberables[i];
68+
var k = enumerables[i];
6969
// signature has key-value, so overloadSetter can directly pass the
7070
// method function, without swapping arguments.
7171
if (hasOwnProperty.call(object, k)) fn.call(bind, k, object[k]);

0 commit comments

Comments
 (0)