mirror of https://github.com/gofiber/fiber.git
corrected coding typos in MountPath docs section (#2379)
* corrected coding typos in MountPath docs section * Update app.md --------- Co-authored-by: Kyle Manning <kyle@manning.jp> Co-authored-by: M. Efe Çetin <efectn@protonmail.com>pull/2382/head
parent
7536ce8b1a
commit
32c3961726
|
@ -145,10 +145,10 @@ func (app *App) MountPath() string
|
|||
|
||||
```go title="Examples"
|
||||
func main() {
|
||||
app := New()
|
||||
one := New()
|
||||
two := New()
|
||||
three := New()
|
||||
app := fiber.New()
|
||||
one := fiber.New()
|
||||
two := fiber.New()
|
||||
three := fiber.New()
|
||||
|
||||
two.Mount("/three", three)
|
||||
one.Mount("/two", two)
|
||||
|
|
Loading…
Reference in New Issue