fix(docs): add missing comma (#2353)

fix: add missing comma

nothing too much but it's a fix :p
pull/2354/head
Caio Augusto 2023-03-05 17:26:06 -03:00 committed by GitHub
parent a70b8612b1
commit 44fd1976e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -56,11 +56,11 @@ app.Use(limiter.New(limiter.Config{
Expiration: 30 * time.Second,
KeyGenerator: func(c *fiber.Ctx) string{
return "key"
}
},
LimitReached: func(c *fiber.Ctx) error {
return c.SendFile("./toofast.html")
},
Storage: myCustomStore{}
Storage: myCustomStore{},
}))
```