1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-29 05:42:20 +00:00

docs(object): fix object

This commit is contained in:
ruanyf 2016-09-28 19:33:55 +08:00
parent 46af4fb5fe
commit 1cd457d5cf

View File

@ -529,7 +529,7 @@ const DEFAULTS = {
};
function processContent(options) {
let options = Object.assign({}, DEFAULTS, options);
options = Object.assign({}, DEFAULTS, options);
}
```