Fix typo.

This commit is contained in:
kangax 2010-09-01 17:58:42 -04:00
parent 6ba986da49
commit 371d38c0de

View file

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