From e26bdf46c894c4d7252bb464cde049629859c1f2 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Wed, 19 Mar 2014 15:33:43 -0700 Subject: [PATCH] Fix a minor typo in the `update()` docs --- docs/09.6-update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/09.6-update.md b/docs/09.6-update.md index f5239b19..e98fd4a8 100644 --- a/docs/09.6-update.md +++ b/docs/09.6-update.md @@ -40,7 +40,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. -`update() provides simple syntactic sugar around this pattern to make writing this code easier. This code becomes: +`update()` provides simple syntactic sugar around this pattern to make writing this code easier. This code becomes: ```javascript var newData = React.addons.update(myData, {