From 8d05bef2b8ee4fd515cd9b509abe7c41f7c7986a Mon Sep 17 00:00:00 2001 From: Greg Roodt Date: Sat, 15 Jun 2013 11:07:20 +0300 Subject: [PATCH 1/2] Minor typo. --- docs/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax.md b/docs/syntax.md index e4b099bd..bb477e9a 100644 --- a/docs/syntax.md +++ b/docs/syntax.md @@ -53,7 +53,7 @@ var app = Nav({color:'blue'}, Profile({}, 'click')); ``` Use the [JSX Compiler](/react/jsx-compiler.html) to try out JSX and see how it -desguars into native JavaScript. +desugars into native JavaScript. If you want to use JSX, the [Getting Started](getting-started.html) guide shows how to setup compilation. From 5cca6a2f0ec3e06acef8223d6774b65c0a5bcf24 Mon Sep 17 00:00:00 2001 From: Greg Roodt Date: Sat, 15 Jun 2013 11:08:06 +0300 Subject: [PATCH 2/2] Minor grammar. --- docs/component-lifecycle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/component-lifecycle.md b/docs/component-lifecycle.md index 1998f180..8861c187 100644 --- a/docs/component-lifecycle.md +++ b/docs/component-lifecycle.md @@ -22,7 +22,7 @@ In this one simple line, we have accomplished the following: - The component is **mounted** into `document.body`. **Mounting** is the process of initializing a React component by creating its -DOM nodes and inserting the them into a supplied container node. +DOM nodes and inserting them into a supplied container node. At this point, the entire page consists of a single `
` with "Hello, world!".