diff --git a/docs/docs/10.7-update.md b/docs/docs/10.7-update.md index d50658330f..873a85e4bf 100644 --- a/docs/docs/10.7-update.md +++ b/docs/docs/10.7-update.md @@ -39,7 +39,7 @@ var newData = extend(myData, { }); ``` -While this is fairly performant (since it only shallow copies `log n` objects and reuses the rest), it's a big pain to write. Look at all the repetition! This is not only annoying, but also provides a large surface area for bugs. +While this is fairly performant (since it only makes a shallow copy of `log n` objects and reuses the rest), it's a big pain to write. Look at all the repetition! This is not only annoying, but also provides a large surface area for bugs. `update()` provides simple syntactic sugar around this pattern to make writing this code easier. This code becomes: