From 58a179b5998d424c57d9e5a5b6368165582b2fbc Mon Sep 17 00:00:00 2001 From: Eric Lewis Date: Thu, 16 Apr 2020 10:01:18 -0400 Subject: [PATCH] docs: fix invalid JSON example (#64) The JSON spec does not allow a trailing comma --- docs/Getting Started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Getting Started.md b/docs/Getting Started.md index 250ef9e..21599c0 100644 --- a/docs/Getting Started.md +++ b/docs/Getting Started.md @@ -22,14 +22,14 @@ A locale dictionary is a regular JSON object which contains message definitions { "page_title": "Page titlte", "sign_in": "Sign in", - "sign_up": "Sign up", + "sign_up": "Sign up" } // pt.json { "page_title": "Título da página", "sign_in": "Entrar", - "sign_up": "Registrar", + "sign_up": "Registrar" } ```