Skip to content

Commit

Permalink
fix: missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
monteiro-renato authored and onsi committed Nov 5, 2024
1 parent b101e0c commit 21765a2
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 @@ -1634,12 +1634,12 @@ var _ = Describe("Math", func() {
func(a, b, c int) {
Expect(a+b).To(Equal(c))
},
EntryDescription("%d + %d = %d")
EntryDescription("%d + %d = %d"),
Entry(nil, 1, 2, 3),
Entry(nil, -1, 2, 1),
Entry("zeros", 0, 0, 0),
Entry(EntryDescription("%[3]d = %[1]d + %[2]d"), 10, 100, 110)
Entry(func(a, b, c int) string {return fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7)
Entry(EntryDescription("%[3]d = %[1]d + %[2]d"), 10, 100, 110),
Entry(func(a, b, c int) string {return fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7),
)
})
```
Expand Down

0 comments on commit 21765a2

Please sign in to comment.