Skip to content

Commit

Permalink
docs(*): grammer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe.zkk committed Oct 19, 2018
1 parent a7fdb06 commit 0a66821
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions site/en-us/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ import '@alifd/next/dist/next.css';
import { Button, Input } from '@alifd/next';
```

### Import Modular with Plugin
### Import module with plugin


#### 1.Import Modular Manually
#### 1. Import module manually

``` js
import Button from '@alifd/next/lib/button';
import '@alifd/next/lib/button/style';
```

#### 2.Use with [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) ( Recommend )
#### 2. Use with [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) ( Recommend )

``` js
// webpack babel loader option or .babelrc
Expand All @@ -68,7 +68,7 @@ import '@alifd/next/lib/button/style';
}
```

It will transform below code
It will transform code as below

``` js
import { Button } from '@alifd/next';
Expand All @@ -84,10 +84,10 @@ import '@alifd/next/lib/button/style';

## Release Schedule

Follow [Semantic Versioning 2.0.0](https://semver.org/) Semantic Version Strategy:
Follow [Semantic Versioning 2.0.0](https://semver.org/) Semantic Version Strategy.

Patch Version: Every Monday release of a bugfix version(anytime for urgent bugfix).

Minor Version: Monthly release of a backward compatible version with new features
Minor Version: Monthly release of a backward compatible version with new features.

Major version: contains some break changes, usually one to two years release of a version.

0 comments on commit 0a66821

Please sign in to comment.