Skip to content

Commit

Permalink
fix(docs): missing semicolon in Locales option example (nuxt-modules#…
Browse files Browse the repository at this point in the history
  • Loading branch information
qnp authored Feb 9, 2021
1 parent f8e9ece commit e9f2a6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/content/en/options-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ List of locales supported by your app. Can either be an array of codes (`['en',
```js
[
{ code: 'en', iso: 'en-US', file: 'en.js', dir: 'ltr' },
{ code: 'ar', iso: 'ar-EG', file: 'ar.js', dir: 'rtl' }
{ code: 'fr', iso: 'fr-FR', file: 'fr.js', },
{ code: 'ar', iso: 'ar-EG', file: 'ar.js', dir: 'rtl' },
{ code: 'fr', iso: 'fr-FR', file: 'fr.js' },
]
```

Expand Down
4 changes: 2 additions & 2 deletions docs/content/es/options-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ List of locales supported by your app. Can either be an array of codes (`['en',
```js
[
{ code: 'en', iso: 'en-US', file: 'en.js', dir: 'ltr' },
{ code: 'ar', iso: 'ar-EG', file: 'ar.js', dir: 'rtl' }
{ code: 'es', iso: 'es-ES', file: 'es.js' }
{ code: 'ar', iso: 'ar-EG', file: 'ar.js', dir: 'rtl' },
{ code: 'es', iso: 'es-ES', file: 'es.js' },
]
```

Expand Down

0 comments on commit e9f2a6a

Please sign in to comment.