Skip to content

Commit

Permalink
corrected coding typos in MountPath docs section (#2379)
Browse files Browse the repository at this point in the history
* corrected coding typos in MountPath docs section

* Update app.md

---------

Co-authored-by: Kyle Manning <[email protected]>
Co-authored-by: M. Efe Çetin <[email protected]>
  • Loading branch information
3 people authored Mar 22, 2023
1 parent 7536ce8 commit 32c3961
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/api/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 32c3961

Please sign in to comment.