Skip to content

Commit fa2c895

Browse files
monteiro-renatoonsi
authored andcommitted
fix: missing return
1 parent d19f573 commit fa2c895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,7 +1639,7 @@ var _ = Describe("Math", func() {
16391639
Entry(nil, -1, 2, 1),
16401640
Entry("zeros", 0, 0, 0),
16411641
Entry(EntryDescription("%[3]d = %[1]d + %[2]d"), 10, 100, 110)
1642-
Entry(func(a, b, c int) string {fmt.Sprintf("%d = %d", a + b, c)}, 4, 3, 7)
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)