Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Very minor corrections to documentation #96

Merged
merged 2 commits into from
Jun 17, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/component-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<div>` with "Hello,
world!".
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down