From 10a431eb30d93c224c32f10f9372b3c04a1ecd3a Mon Sep 17 00:00:00 2001 From: Renato Monteiro <45536168+monteiro-renato@users.noreply.github.com> Date: Tue, 5 Nov 2024 07:22:29 +0100 Subject: [PATCH] fix: missing commas --- docs/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 295eac784..5a2fba3ab 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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), ) }) ```