Merge pull request #2639 from existentialism/typo-2

Fix typo
This commit is contained in:
James Kyle 2015-10-29 18:07:09 -07:00
commit b9160b3a6c
3 changed files with 12 additions and 12 deletions

View File

@ -1,11 +1,11 @@
# babel-plugin-syntax-class-construtor-call # babel-plugin-syntax-class-constructor-call
Allow parsing of do expressions. Allow parsing of do expressions.
## Installation ## Installation
```sh ```sh
$ npm install babel-plugin-syntax-class-construtor-call $ npm install babel-plugin-syntax-class-constructor-call
``` ```
## Usage ## Usage
@ -16,20 +16,20 @@ $ npm install babel-plugin-syntax-class-construtor-call
```json ```json
{ {
"plugins": ["syntax-class-construtor-call"] "plugins": ["syntax-class-constructor-call"]
} }
``` ```
### Via CLI ### Via CLI
```sh ```sh
$ babel --plugins syntax-class-construtor-call script.js $ babel --plugins syntax-class-constructor-call script.js
``` ```
### Via Node API ### Via Node API
```javascript ```javascript
require("babel-core").transform("code", { require("babel-core").transform("code", {
plugins: ["syntax-class-construtor-call"] plugins: ["syntax-class-constructor-call"]
}); });
``` ```

View File

@ -1,9 +1,9 @@
# babel-plugin-transform-class-construtor-call # babel-plugin-transform-class-constructor-call
## Installation ## Installation
```sh ```sh
$ npm install babel-plugin-transform-class-construtor-call $ npm install babel-plugin-transform-class-constructor-call
``` ```
## Usage ## Usage
@ -14,20 +14,20 @@ $ npm install babel-plugin-transform-class-construtor-call
```json ```json
{ {
"plugins": ["transform-class-construtor-call"] "plugins": ["transform-class-constructor-call"]
} }
``` ```
### Via CLI ### Via CLI
```sh ```sh
$ babel --plugins transform-class-construtor-call script.js $ babel --plugins transform-class-constructor-call script.js
``` ```
### Via Node API ### Via Node API
```javascript ```javascript
require("babel-core").transform("code", { require("babel-core").transform("code", {
plugins: ["transform-class-construtor-call"] plugins: ["transform-class-constructor-call"]
}); });
``` ```

View File

@ -1,5 +1,5 @@
{ {
"name": "babel-plugin-transform-class-construtor-call", "name": "babel-plugin-transform-class-constructor-call",
"version": "6.0.2", "version": "6.0.2",
"description": "", "description": "",
"repository": "babel/babel", "repository": "babel/babel",