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]; }