Skip to content

Commit 21765a2

Browse files
monteiro-renatoonsi
authored andcommitted
fix: missing commas
1 parent b101e0c commit 21765a2

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
@@ -1634,12 +1634,12 @@ var _ = Describe("Math", func() {
16341634
func(a, b, c int) {
16351635
Expect(a+b).To(Equal(c))
16361636
},
1637-
EntryDescription("%d + %d = %d")
1637+
EntryDescription("%d + %d = %d"),
16381638
Entry(nil, 1, 2, 3),
16391639
Entry(nil, -1, 2, 1),
16401640
Entry("zeros", 0, 0, 0),
1641-
Entry(EntryDescription("%[3]d = %[1]d + %[2]d"), 10, 100, 110)
1642-
Entry(func(a, b, c int) string {return fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7)
1641+
Entry(EntryDescription("%[3]d = %[1]d + %[2]d"), 10, 100, 110),
1642+
Entry(func(a, b, c int) string {return fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7),
16431643
)
16441644
})
16451645
```

0 commit comments

Comments
 (0)