From 75120215cadbf447dfa2c56dd47b739554c8371c Mon Sep 17 00:00:00 2001 From: Renato Monteiro <45536168+monteiro-renato@users.noreply.github.com> Date: Mon, 4 Nov 2024 10:31:48 +0100 Subject: [PATCH] fix: remove trailing comma --- docs/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 525fd8bde..295eac784 100644 --- a/docs/index.md +++ b/docs/index.md @@ -528,7 +528,7 @@ var _ = Describe("Books", func() { BeforeEach(func() { book, err = NewBookFromJSON(`{ "title":"Les Miserables", - "author":"Victor Hugo", + "author":"Victor Hugo" }`) }) @@ -766,7 +766,7 @@ Describe("some JSON decoding edge cases", func() { BeforeEach(func() { book, err = NewBookFromJSON(`{ "title":"Les Miserables", - "author":"Victor Hugo", + "author":"Victor Hugo" }`) }) @@ -837,7 +837,7 @@ Describe("some JSON decoding edge cases", func() { BeforeEach(func() { json = `{ "title":"Les Miserables", - "author":"Victor Hugo", + "author":"Victor Hugo" }` })