From 914d8cbde31db87e4e2ee5751658d31c8fd97760 Mon Sep 17 00:00:00 2001 From: Cheng Lou Date: Sat, 6 Jul 2013 16:10:34 -0400 Subject: [PATCH] Emphasis on single child. --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 337ae8690..14046e679 100644 --- a/docs/api.md +++ b/docs/api.md @@ -50,7 +50,7 @@ React.createClass({ function createClass(object specification) ``` -Creates a component given a specification. A component implements a `render` method which returns a single child. That child may have an arbitrarily deep child structure. One thing that makes components different than a standard prototypal classes is that you don't need to call new on them. They are convenience wrappers that construct backing instances (via new) for you. +Creates a component given a specification. A component implements a `render` method which returns **one single** child. That child may have an arbitrarily deep child structure. One thing that makes components different than a standard prototypal classes is that you don't need to call new on them. They are convenience wrappers that construct backing instances (via new) for you. #### React.renderComponent