Skip to content

Commit

Permalink
fix: remove trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
monteiro-renato authored and onsi committed Nov 4, 2024
1 parent 9d33507 commit 7512021
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ var _ = Describe("Books", func() {
BeforeEach(func() {
book, err = NewBookFromJSON(`{
"title":"Les Miserables",
"author":"Victor Hugo",
"author":"Victor Hugo"
}`)
})

Expand Down Expand Up @@ -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"
}`)
})

Expand Down Expand Up @@ -837,7 +837,7 @@ Describe("some JSON decoding edge cases", func() {
BeforeEach(func() {
json = `{
"title":"Les Miserables",
"author":"Victor Hugo",
"author":"Victor Hugo"
}`
})

Expand Down

0 comments on commit 7512021

Please sign in to comment.