From 1226b59d6e091c73ddaa96c870e93f9050719476 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 16 Mar 2016 16:39:43 +0700 Subject: [PATCH] react: Fix typo in comment. --- react/react.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/react.d.ts b/react/react.d.ts index 22d7c16ca..f78a967fb 100644 --- a/react/react.d.ts +++ b/react/react.d.ts @@ -167,7 +167,7 @@ declare namespace __React { // React.Props is now deprecated, which means that the `children` // property is not available on `P` by default, even though you can // always pass children as variadic arguments to `createElement`. - // In the future, if we can define its call signature conditionallly + // In the future, if we can define its call signature conditionally // on the existence of `children` in `P`, then we should remove this. props: P & { children?: ReactNode }; state: S;