mirror of https://github.com/gofiber/fiber.git
fix(docs): add missing comma (#2353)
fix: add missing comma nothing too much but it's a fix :ppull/2354/head
parent
a70b8612b1
commit
44fd1976e7
|
@ -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{},
|
||||
}))
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue