diff --git a/docs/api/app.md b/docs/api/app.md index 5ab89922e7..21e631a48d 100644 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -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)