diff --git a/src/Transition.js b/src/Transition.js index 8af2f5ed..2bb82d62 100644 --- a/src/Transition.js +++ b/src/Transition.js @@ -43,7 +43,7 @@ export const EXITING = 'exiting'; * ...defaultStyle, * ...transitionStyles[state] * }}> - * I'm A fade Transition! + * I'm a fade Transition! * * )} * @@ -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'`. * @@ -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 diff --git a/src/TransitionGroup.js b/src/TransitionGroup.js index 8afe1d2c..548be8fd 100644 --- a/src/TransitionGroup.js +++ b/src/TransitionGroup.js @@ -69,7 +69,7 @@ const defaultProps = { * As items are removed or added to the TodoList the `in` prop is toggled * automatically by the ``. You can use _any_ `` * component in a ``, not just css. - * * + * * * * Note that `` does not define any animation behavior!