diff --git a/_posts/2013-07-03-community-roundup-4.md b/_posts/2013-07-03-community-roundup-4.md index 0533f037..62e56c56 100644 --- a/_posts/2013-07-03-community-roundup-4.md +++ b/_posts/2013-07-03-community-roundup-4.md @@ -23,7 +23,7 @@ The best part is the demo of how React reconciliation process makes live editing ## React Snippets -Over the past several weeks, members of our team, [Pete Hunt](http://www.petehunt.net/) and [Paul O'Shannessy](http://zpao.com/), answered many questions that were asked in the [React group](https://groups.google.com/forum/#!forum/reactjs). They give a good overview of how to integrate React with other libraries and APIs through the use of [Mixins](/react/docs/mixins.html) and [Lifecycle Methods](/react/docs/advanced-components.html). +Over the past several weeks, members of our team, [Pete Hunt](http://www.petehunt.net/) and [Paul O'Shannessy](http://zpao.com/), answered many questions that were asked in the [React group](https://groups.google.com/forum/#!forum/reactjs). They give a good overview of how to integrate React with other libraries and APIs through the use of [Mixins](/react/docs/reusable-components.html) and [Lifecycle Methods](/react/docs/working-with-the-browser.html). > [Listening Scroll Event](https://groups.google.com/forum/#!topic/reactjs/l6PnP8qbofk) > diff --git a/docs/02.1-jsx-in-depth.md b/docs/02.1-jsx-in-depth.md index 11e630b1..dc2ae7ce 100644 --- a/docs/02.1-jsx-in-depth.md +++ b/docs/02.1-jsx-in-depth.md @@ -92,7 +92,7 @@ var MyComponent = React.createClass({/*...*/}); var app = ; ``` -See [Component Basics](component-basics.html) to learn more about components. +See [Multiple Components](multiple-components.html) to learn more about using composite components. > Note: > diff --git a/downloads.md b/downloads.md index 36430c39..0139825c 100644 --- a/downloads.md +++ b/downloads.md @@ -29,7 +29,7 @@ The uncompressed, development version of React core with inline documentation. ``` #### JSX Transform -The JSX transformer used to support [XML syntax](/react/docs/syntax.html) in JavaScript. +The JSX transformer used to support [XML syntax](/react/docs/jsx-in-depth.html) in JavaScript. ```html diff --git a/jsx-compiler.md b/jsx-compiler.md index b0a1adae..495d115e 100644 --- a/jsx-compiler.md +++ b/jsx-compiler.md @@ -6,7 +6,7 @@ id: jsx-compiler

JSX Compiler

- This tool demonstrates how JSX syntax + This tool demonstrates how JSX syntax is desguared into native JavaScript.