Skip to content

Commit fe10228

Browse files
Fennygitbook-bot
authored andcommitted
GitBook: [master] one page modified
1 parent 08d7f9d commit fe10228

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ c.AcceptsLanguages(langs ...string) string
3131
app.Get("/", func(c *fiber.Ctx) {
3232
c.Accepts("html") // "html"
3333
c.Accepts("text/html") // "text/html"
34-
c.Accepts("json", "text") // "json" "text"
34+
c.Accepts("json", "text") // "json"
3535
c.Accepts("application/json") // "application/json"
3636
c.Accepts("image/png") // ""
3737
c.Accepts("png") // ""
@@ -54,7 +54,7 @@ app.Get("/", func(c *fiber.Ctx) {
5454
// "compress"
5555

5656
c.AcceptsLanguages("pt", "nl", "ru")
57-
// "nl" "ru"
57+
// "nl"
5858
})
5959
```
6060

0 commit comments

Comments
 (0)