Skip to content

Commit

Permalink
Merge pull request #258 from newyork-anthonyng/feature/an/update-readme
Browse files Browse the repository at this point in the history
Update documentation
  • Loading branch information
taion committed Nov 26, 2017
2 parents df4f6e4 + e936fc3 commit 1437e67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Transition.js
Expand Up @@ -43,7 +43,7 @@ export const EXITING = 'exiting';
* ...defaultStyle,
* ...transitionStyles[state]
* }}>
* I'm A fade Transition!
* I'm a fade Transition!
* </div>
* )}
* </Transition>
Expand Down Expand Up @@ -83,7 +83,7 @@ export const EXITING = 'exiting';
* ```
*
* When the button is clicked the component will shift to the `'entering'` state and
* stay there for 500ms (the value of `timeout`) when finally switches to `'entered'`.
* stay there for 500ms (the value of `timeout`) before it finally switches to `'entered'`.
*
* When `in` is `false` the same thing happens except the state moves from `'exiting'` to `'exited'`.
*
Expand Down Expand Up @@ -348,7 +348,7 @@ Transition.propTypes = {
/**
* A `function` child can be used instead of a React element.
* This function is called with the current transition status
* ('entering', 'entered', 'exiting', 'exited', 'unmounted'), which can used
* ('entering', 'entered', 'exiting', 'exited', 'unmounted'), which can be used
* to apply context specific props to a component.
*
* ```jsx
Expand Down
2 changes: 1 addition & 1 deletion src/TransitionGroup.js
Expand Up @@ -69,7 +69,7 @@ const defaultProps = {
* As items are removed or added to the TodoList the `in` prop is toggled
* automatically by the `<TransitionGroup>`. You can use _any_ `<Transition>`
* component in a `<TransitionGroup>`, not just css.
* *
*
* <iframe src="https://codesandbox.io/embed/43v5wj62q9?autoresize=1&fontsize=12&hidenavigation=1&moduleview=1" style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;" sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"></iframe>
*
* Note that `<TransitionGroup>` does not define any animation behavior!
Expand Down

0 comments on commit 1437e67

Please sign in to comment.