From 226a0b429935cca07d5f1aeed89624b99a83b189 Mon Sep 17 00:00:00 2001 From: Mehmet Firat KOMURCU Date: Wed, 13 Dec 2023 10:20:38 +0300 Subject: [PATCH] Update app.md for indentation --- docs/api/app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/app.md b/docs/api/app.md index 93dae1bc64..198c83ce1d 100644 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -205,7 +205,7 @@ func main() { app.Route("/test", func(api fiber.Router) { api.Get("/foo", handler).Name("foo") // /test/foo (name: test.foo) - api.Get("/bar", handler).Name("bar") // /test/bar (name: test.bar) + api.Get("/bar", handler).Name("bar") // /test/bar (name: test.bar) }, "test.") log.Fatal(app.Listen(":3000"))