From 648cb52b729fbfec77db2427443ffca4042b707f Mon Sep 17 00:00:00 2001 From: Thomas Reggi Date: Wed, 23 Sep 2015 19:56:26 -0400 Subject: [PATCH] doc: typo existant to existent --- docs/tips/07-children-props-type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tips/07-children-props-type.md b/docs/tips/07-children-props-type.md index d6758121db..15ca64f4e9 100644 --- a/docs/tips/07-children-props-type.md +++ b/docs/tips/07-children-props-type.md @@ -34,7 +34,7 @@ var GenericWrapper = React.createClass({ console.log(Array.isArray(this.props.children)); // => false // warning: yields 5 for length of the string 'hello', not 1 for the - // length of the non-existant array wrapper! + // length of the non-existent array wrapper! console.log(this.props.children.length); },