Fix method typo

This commit is contained in:
Jeremy Ramin
2015-08-22 21:16:32 -07:00
parent f2c9688b43
commit 85800f6d00

View File

@@ -865,7 +865,7 @@ class Config
if value?
defaultValue = @deepClone(defaultValue)
value = _.deepExtends(defaultValue, value) if isPlainObject(value) and isPlainObject(defaultValue)
value = _.deepExtend(defaultValue, value) if isPlainObject(value) and isPlainObject(defaultValue)
else
value = @deepClone(defaultValue)