diff --git a/docs/index.md b/docs/index.md index 90aa59493..e1835cf2f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1639,7 +1639,7 @@ var _ = Describe("Math", func() { 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 {fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7) + Entry(func(a, b, c int) string {return fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7) ) }) ```