Skip to content

Commit 7512021

Browse files
monteiro-renatoonsi
authored andcommitted
fix: remove trailing comma
1 parent 9d33507 commit 7512021

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ var _ = Describe("Books", func() {
528528
BeforeEach(func() {
529529
book, err = NewBookFromJSON(`{
530530
"title":"Les Miserables",
531-
"author":"Victor Hugo",
531+
"author":"Victor Hugo"
532532
}`)
533533
})
534534

@@ -766,7 +766,7 @@ Describe("some JSON decoding edge cases", func() {
766766
BeforeEach(func() {
767767
book, err = NewBookFromJSON(`{
768768
"title":"Les Miserables",
769-
"author":"Victor Hugo",
769+
"author":"Victor Hugo"
770770
}`)
771771
})
772772

@@ -837,7 +837,7 @@ Describe("some JSON decoding edge cases", func() {
837837
BeforeEach(func() {
838838
json = `{
839839
"title":"Les Miserables",
840-
"author":"Victor Hugo",
840+
"author":"Victor Hugo"
841841
}`
842842
})
843843

0 commit comments

Comments
 (0)