From 2cd9b8346ba8a681706e84b80bd8c8c44d8d6bde 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 --- tips/07-children-props-type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tips/07-children-props-type.md b/tips/07-children-props-type.md index d6758121d..15ca64f4e 100644 --- a/tips/07-children-props-type.md +++ b/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); },