mirror of https://github.com/gofiber/fiber.git
fix: typo in hooks documentation
parent
079d301c50
commit
72e97c555d
|
@ -34,7 +34,7 @@ type OnMountHandler = func(*App) error
|
||||||
|
|
||||||
## OnRoute
|
## 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"
|
```go title="Signature"
|
||||||
func (h *Hooks) OnRoute(handler ...OnRouteHandler)
|
func (h *Hooks) OnRoute(handler ...OnRouteHandler)
|
||||||
|
@ -104,7 +104,7 @@ func main() {
|
||||||
|
|
||||||
## OnGroup
|
## 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"
|
```go title="Signature"
|
||||||
func (h *Hooks) OnGroup(handler ...OnGroupHandler)
|
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.
|
// Also you can get route properties by route parameter.
|
||||||
func (h *Hooks) OnRoute(handler ...OnRouteHandler) {
|
func (h *Hooks) OnRoute(handler ...OnRouteHandler) {
|
||||||
h.app.mutex.Lock()
|
h.app.mutex.Lock()
|
||||||
|
@ -71,7 +71,7 @@ func (h *Hooks) OnName(handler ...OnNameHandler) {
|
||||||
h.app.mutex.Unlock()
|
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.
|
// Also you can get group properties by group parameter.
|
||||||
func (h *Hooks) OnGroup(handler ...OnGroupHandler) {
|
func (h *Hooks) OnGroup(handler ...OnGroupHandler) {
|
||||||
h.app.mutex.Lock()
|
h.app.mutex.Lock()
|
||||||
|
|
Loading…
Reference in New Issue