From dc9752c0ceb5d95b36eb144a8c677972928df816 Mon Sep 17 00:00:00 2001 From: Roger Zurawicki Date: Wed, 29 May 2019 21:14:15 +0800 Subject: [PATCH] docs: Fix typo in CSSTransition (#505) CSSS to CSS See http://reactcommunity.org/react-transition-group/css-transition --- src/CSSTransition.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CSSTransition.js b/src/CSSTransition.js index f0cd415c..fb97acec 100644 --- a/src/CSSTransition.js +++ b/src/CSSTransition.js @@ -19,7 +19,7 @@ const removeClass = (node, classes) => node && classes && classes.split(' ').for * * `CSSTransition` applies a pair of class names during the `appear`, `enter`, * and `exit` states of the transition. The first class is applied and then a - * second `*-active` class in order to activate the CSSS transition. After the + * second `*-active` class in order to activate the CSS transition. After the * transition, matching `*-done` class names are applied to persist the * transition state. *