From 7dd33967b61c0171ea5cff9c31cf3dd810b0195f Mon Sep 17 00:00:00 2001 From: Cheng Lou Date: Thu, 13 Nov 2014 13:45:35 -0500 Subject: [PATCH] Merge pull request #2514 from jvalente/patch-1 Update ref-09-glossary.md --- docs/docs/ref-09-glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/ref-09-glossary.md b/docs/docs/ref-09-glossary.md index 3d8f200b2a..0f17ddc277 100644 --- a/docs/docs/ref-09-glossary.md +++ b/docs/docs/ref-09-glossary.md @@ -21,7 +21,7 @@ You can create one of these object through `React.createElement`. var root = React.createElement('div'); ``` -To render a new tree into the DOM, you create `ReactElement`s and pass them to `React.render` a long with a regular DOM `Element` (`HTMLElement` or `SVGElement`). `ReactElement`s are not to be confused with DOM `Element`s. A `ReactElement` is a light, stateless, immutable, virtual representation of a DOM `Element`. It is a virtual DOM. +To render a new tree into the DOM, you create `ReactElement`s and pass them to `React.render` along with a regular DOM `Element` (`HTMLElement` or `SVGElement`). `ReactElement`s are not to be confused with DOM `Element`s. A `ReactElement` is a light, stateless, immutable, virtual representation of a DOM `Element`. It is a virtual DOM. ```javascript React.render(root, document.body);