Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 356b8f3

Browse files
committed
Capitalize Babel
(cherry picked from commit 61962c1)
1 parent 7d914ea commit 356b8f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/docs/09-tooling-integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We have instructions for building from `master` [in our GitHub repository](https
2323

2424
### In-browser JSX Transform
2525

26-
If you like using JSX, babel provides an [in-browser ES6 and JSX transformer for development](http://babeljs.io/docs/usage/browser/) called browser.js that can be included from a `babel-core` npm release or from [CDNJS](http://cdnjs.com/libraries/babel-core). Include a `<script type="text/babel">` tag to engage the JSX transformer.
26+
If you like using JSX, Babel provides an [in-browser ES6 and JSX transformer for development](http://babeljs.io/docs/usage/browser/) called browser.js that can be included from a `babel-core` npm release or from [CDNJS](http://cdnjs.com/libraries/babel-core). Include a `<script type="text/babel">` tag to engage the JSX transformer.
2727

2828
> Note:
2929
>
@@ -32,11 +32,11 @@ If you like using JSX, babel provides an [in-browser ES6 and JSX transformer for
3232

3333
### Productionizing: Precompiled JSX
3434

35-
If you have [npm](https://www.npmjs.com/), you can run `npm install -g babel`. `babel` has built-in support for React v0.12 and v0.13. Tags are automatically transformed to their equivalent `React.createElement(...)`, `displayName` is automatically inferred and added to all React.createClass calls.
35+
If you have [npm](https://www.npmjs.com/), you can run `npm install -g babel`. Babel has built-in support for React v0.12 and v0.13. Tags are automatically transformed to their equivalent `React.createElement(...)`, `displayName` is automatically inferred and added to all React.createClass calls.
3636

3737
This tool will translate files that use JSX syntax to plain JavaScript files that can run directly in the browser. It will also watch directories for you and automatically transform files when they are changed; for example: `babel --watch src/ --out-dir lib/`.
3838

39-
By default JSX files with a `.js` extension are transformed. Run `babel --help` for more information on how to use `babel`.
39+
By default JSX files with a `.js` extension are transformed. Run `babel --help` for more information on how to use Babel.
4040

4141
Example output:
4242

0 commit comments

Comments
 (0)