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
Kyle Manning 2023-03-22 15:44:36 +09:00 committed by GitHub
parent 7536ce8b1a
commit 32c3961726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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)