diff --git a/docs/content/en/options-reference.md b/docs/content/en/options-reference.md index 3f0a4f9b9..ca66c60e6 100644 --- a/docs/content/en/options-reference.md +++ b/docs/content/en/options-reference.md @@ -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' }, ] ``` diff --git a/docs/content/es/options-reference.md b/docs/content/es/options-reference.md index 69e33e3dc..8e4872066 100644 --- a/docs/content/es/options-reference.md +++ b/docs/content/es/options-reference.md @@ -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' }, ] ```