docs: fix invalid JSON example (#64)

The JSON spec does not allow a trailing comma
This commit is contained in:
Eric Lewis 2020-04-16 10:01:18 -04:00 committed by GitHub
parent a0409bf909
commit 58a179b599
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,14 +22,14 @@ A locale dictionary is a regular JSON object which contains message definitions
{ {
"page_title": "Page titlte", "page_title": "Page titlte",
"sign_in": "Sign in", "sign_in": "Sign in",
"sign_up": "Sign up", "sign_up": "Sign up"
} }
// pt.json // pt.json
{ {
"page_title": "Título da página", "page_title": "Título da página",
"sign_in": "Entrar", "sign_in": "Entrar",
"sign_up": "Registrar", "sign_up": "Registrar"
} }
``` ```