mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-06 11:02:01 +00:00
fix: typo in hooks documentation
This commit is contained in:
parent
079d301c50
commit
72e97c555d
@ -34,7 +34,7 @@ type OnMountHandler = func(*App) error
|
||||
|
||||
## OnRoute
|
||||
|
||||
OnRoute is a hook to execute user functions on each route registeration. Also you can get route properties by **route** parameter.
|
||||
OnRoute is a hook to execute user functions on each route registration. Also you can get route properties by **route** parameter.
|
||||
|
||||
```go title="Signature"
|
||||
func (h *Hooks) OnRoute(handler ...OnRouteHandler)
|
||||
@ -104,7 +104,7 @@ func main() {
|
||||
|
||||
## OnGroup
|
||||
|
||||
OnGroup is a hook to execute user functions on each group registeration. Also you can get group properties by **group** parameter.
|
||||
OnGroup is a hook to execute user functions on each group registration. Also you can get group properties by **group** parameter.
|
||||
|
||||
```go title="Signature"
|
||||
func (h *Hooks) OnGroup(handler ...OnGroupHandler)
|
||||
|
4
hooks.go
4
hooks.go
@ -53,7 +53,7 @@ func newHooks(app *App) *Hooks {
|
||||
}
|
||||
}
|
||||
|
||||
// OnRoute is a hook to execute user functions on each route registeration.
|
||||
// OnRoute is a hook to execute user functions on each route registration.
|
||||
// Also you can get route properties by route parameter.
|
||||
func (h *Hooks) OnRoute(handler ...OnRouteHandler) {
|
||||
h.app.mutex.Lock()
|
||||
@ -71,7 +71,7 @@ func (h *Hooks) OnName(handler ...OnNameHandler) {
|
||||
h.app.mutex.Unlock()
|
||||
}
|
||||
|
||||
// OnGroup is a hook to execute user functions on each group registeration.
|
||||
// OnGroup is a hook to execute user functions on each group registration.
|
||||
// Also you can get group properties by group parameter.
|
||||
func (h *Hooks) OnGroup(handler ...OnGroupHandler) {
|
||||
h.app.mutex.Lock()
|
||||
|
Loading…
x
Reference in New Issue
Block a user