From 80947848f2c68cc39e5c7b4b9ac3491e8a092233 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 1 Apr 2014 13:04:09 -0700 Subject: [PATCH] Simplify comment. --- tips/16-references-to-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tips/16-references-to-components.md b/tips/16-references-to-components.md index a8ce67ee..00b615a9 100644 --- a/tips/16-references-to-components.md +++ b/tips/16-references-to-components.md @@ -23,7 +23,7 @@ Descriptors also contain any methods that you define in the [statics](http://fac var myComponent = ; // This is just a descriptor. -// Some code here, possibly using static methods... +// Some code here... myComponent = React.renderComponent(myComponent, myContainer); ```