From 371d38c0deae6a72534e7153a37bd1e29976ace5 Mon Sep 17 00:00:00 2001 From: kangax Date: Wed, 1 Sep 2010 17:58:42 -0400 Subject: [PATCH] Fix typo. --- src/util/lang_object.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/lang_object.js b/src/util/lang_object.js index 066a7cf9..31234052 100644 --- a/src/util/lang_object.js +++ b/src/util/lang_object.js @@ -1,6 +1,6 @@ function extend(destination, source) { - // JScript DontEnum bug is not take care of + // JScript DontEnum bug is not taken care of for (var property in source) { destination[property] = source[property]; }