Skip to content

Commit

Permalink
Merge pull request iamkun#339 from cht8687/master
Browse files Browse the repository at this point in the history
Fix file case issue
  • Loading branch information
iamkun committed Sep 14, 2018
2 parents b14bdd1 + 06966a4 commit d08269c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/en/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dayjs.extend(plugin, options) // with plugin options

```javascript
import dayjs from 'dayjs'
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat' // load on demand
import AdvancedFormat from 'dayjs/plugin/advancedFormat' // load on demand

dayjs.extend(AdvancedFormat) // use plugin
```
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dayjs.extend(advancedFormat) // プラグインを使用
- AdvancedFormat はより多様なフォーマットを表現するために `dayjs().format` API を拡張するプラグインです。

```javascript
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat'
import AdvancedFormat from 'dayjs/plugin/advancedFormat'

dayjs.extend(AdvancedFormat)

Expand Down
2 changes: 1 addition & 1 deletion docs/ko/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dayjs.extend(plugin, options) // with plugin options

```javascript
import dayjs from 'dayjs'
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat' // load on demand
import AdvancedFormat from 'dayjs/plugin/advancedFormat' // load on demand

dayjs.extend(AdvancedFormat) // use plugin
```
Expand Down
2 changes: 1 addition & 1 deletion docs/pt-br/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dayjs.extend(advancedFormat) // usar plugin
- O AdvancedFormat modifica a API de `dayjs().format` para adicionar mais opções de formatação.

```javascript
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat'
import AdvancedFormat from 'dayjs/plugin/advancedFormat'

dayjs.extend(AdvancedFormat)

Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dayjs.extend(advancedFormat) // 使用插件
- AdvancedFormat 扩展了 `dayjs().format` API 以支持更多模版

```javascript
import AdvancedFormat from 'dayjs/plugin/AdvancedFormat'
import AdvancedFormat from 'dayjs/plugin/advancedFormat'

dayjs.extend(AdvancedFormat)

Expand Down

0 comments on commit d08269c

Please sign in to comment.