diff --git a/docs/02.1-jsx-in-depth.md b/docs/02.1-jsx-in-depth.md index 2c67b0c8..7be45709 100644 --- a/docs/02.1-jsx-in-depth.md +++ b/docs/02.1-jsx-in-depth.md @@ -22,9 +22,9 @@ var link = React.DOM.a({href: 'http://facebook.github.io/react'}, 'React'); We recommend using JSX for many reasons: -- It's easier to visualize the structure of the DOM. -- Designers are more comfortable making changes. -- It's familiar for those who have used MXML or XAML. +* It's easier to visualize the structure of the DOM. +* Designers are more comfortable making changes. +* It's familiar for those who have used MXML or XAML. ## The Transform @@ -69,8 +69,8 @@ how to setup compilation. React and JSX are independent technologies, but JSX was primarily built with React in mind. The two valid uses of JSX are: -- To construct instances of React DOM components (`React.DOM.*`). -- To construct instances of composite components created with +* To construct instances of React DOM components (`React.DOM.*`). +* To construct instances of composite components created with `React.createClass()`. ### React DOM Components @@ -160,9 +160,9 @@ var content = {/* this is a comment */}