From ea803c47ba2bc1ed5df8df87319fc82ec97935db Mon Sep 17 00:00:00 2001 From: petehunt Date: Tue, 18 Feb 2014 22:51:51 -0800 Subject: [PATCH] docs fixes --- docs/docs/09.1-animation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/09.1-animation.md b/docs/docs/09.1-animation.md index 19b89bb0cc..9418bc4c66 100644 --- a/docs/docs/09.1-animation.md +++ b/docs/docs/09.1-animation.md @@ -94,11 +94,11 @@ You can disable animating `enter` or `leave` animations if you want. For example ### `componentWillEnter(callback)` -This is called at the same time as `componentDidMount()`. It will block other animations from occurring until `callback` is called. +This is called at the same time as `componentDidMount()` for components added to an existing `TransitionGroup`. It will block other animations from occurring until `callback` is called. It will not be called on the initial render of a `TransitionGroup`. ### `componentDidEnter()` -This is called when the `willEnter` `callback` is called. +This is called after the `callback` function that was passed to `componentWillEnter` is called. ### `componentWillLeave(callback)`