From a558e560bd98446a4876e2feefe640c7cbde1681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Thu, 22 Aug 2013 10:59:22 -0700 Subject: [PATCH] Use script to find remaining 404s. Fix them. --- docs/_posts/2013-07-03-community-roundup-4.md | 2 +- docs/docs/02.1-jsx-in-depth.md | 2 +- docs/downloads.md | 2 +- docs/jsx-compiler.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/_posts/2013-07-03-community-roundup-4.md b/docs/_posts/2013-07-03-community-roundup-4.md index 0533f037bd..62e56c569d 100644 --- a/docs/_posts/2013-07-03-community-roundup-4.md +++ b/docs/_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/docs/02.1-jsx-in-depth.md b/docs/docs/02.1-jsx-in-depth.md index 11e630b184..dc2ae7ce79 100644 --- a/docs/docs/02.1-jsx-in-depth.md +++ b/docs/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/docs/downloads.md b/docs/downloads.md index 36430c39b8..0139825cdc 100644 --- a/docs/downloads.md +++ b/docs/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/docs/jsx-compiler.md b/docs/jsx-compiler.md index b0a1adaedb..495d115ee5 100644 --- a/docs/jsx-compiler.md +++ b/docs/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.