From d8e9eb978b3b2bbee7bfaf94dccb25fc8a3fd8ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 29 Jan 2014 13:06:22 -0800 Subject: [PATCH] Fix animation example code key should never be index into an array or there are bugs. Especially in transitions. Fixes #853 --- docs/docs/09.1-animation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/09.1-animation.md b/docs/docs/09.1-animation.md index fdcc40ae74..c3d6c23f5d 100644 --- a/docs/docs/09.1-animation.md +++ b/docs/docs/09.1-animation.md @@ -35,7 +35,7 @@ var TodoList = React.createClass({ render: function() { var items = this.state.items.map(function(item, i) { return ( -
+
{item}
);