From 461174e99f6172591db9eab667da6071f10556dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 3 Sep 2014 11:59:14 -0700 Subject: [PATCH] Fix broken link in animation docs Missed in #2068 --- docs/09.1-animation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/09.1-animation.md b/docs/09.1-animation.md index df7cfc72..53256dd5 100644 --- a/docs/09.1-animation.md +++ b/docs/09.1-animation.md @@ -85,7 +85,7 @@ You'll notice that when you try to remove an item `ReactCSSTransitionGroup` keep ### Animation Group Must Be Mounted To Work -In order for it to apply transitions to its children, the `ReactCSSTransitionGroup` must already be mounted in the DOM. The example below would not work, because the `ReactCSSTransitionGroup` is being mounted along with the new item, instead of the new item being mounted within it. Compare this to the [Getting Started](/docs/docs/09.1-animation.md#getting-started) section above to see the difference. +In order for it to apply transitions to its children, the `ReactCSSTransitionGroup` must already be mounted in the DOM. The example below would not work, because the `ReactCSSTransitionGroup` is being mounted along with the new item, instead of the new item being mounted within it. Compare this to the [Getting Started](#getting-started) section above to see the difference. ```javascript{12-14} render: function() {