Skip to content

Commit

Permalink
Merge pull request facebook#3935 from julen/docs/transition-group
Browse files Browse the repository at this point in the history
Docs: value for `transitionAppear` must be boolean
  • Loading branch information
zpao committed May 22, 2015
2 parents e772c46 + c041356 commit a78be98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/10.1-animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ You'll notice that when you try to remove an item `ReactCSSTransitionGroup` keep
```javascript{3-5}
render: function() {
return (
<ReactCSSTransitionGroup transitionName="example" transitionAppear="true">
<ReactCSSTransitionGroup transitionName="example" transitionAppear={true}>
<h1>Fading at Initial Mount</h1>
</ReactCSSTransitionGroup>
);
Expand Down

0 comments on commit a78be98

Please sign in to comment.