From c323b251da975b2089164353d0966c2ddc03ef31 Mon Sep 17 00:00:00 2001 From: Victor Alvarez Date: Sat, 25 Jul 2015 10:08:23 -0700 Subject: [PATCH] Fix grammar --- docs/10.1-animation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/10.1-animation.md b/docs/10.1-animation.md index 4e873467..6e1e2c77 100644 --- a/docs/10.1-animation.md +++ b/docs/10.1-animation.md @@ -86,7 +86,7 @@ You'll notice that when you try to remove an item `ReactCSSTransitionGroup` keep ### Animate Initial Mounting -`ReactCSSTransitionGroup` provides the optional prop `transitionAppear`, to add an extra transition phase at the initial mount of the component. There is generally no transition phase at the initial mount as the default value of `transitionAppear` is `false`. Following an example which passes the prop `transitionAppear` with the value `true`. +`ReactCSSTransitionGroup` provides the optional prop `transitionAppear`, to add an extra transition phase at the initial mount of the component. There is generally no transition phase at the initial mount as the default value of `transitionAppear` is `false`. The following is an example which passes the prop `transitionAppear` with the value `true`. ```javascript{3-5} render: function() {