Skip to content

Commit a84a7ce

Browse files
committed
📚 Doc: Fix code snippet indentation in /docs/api/middleware/keyauth.md
Removes an an extra level of indentation in line 51 of `keyauth.md` [here](https://github.com/gofiber/fiber/blob/v2/docs/api/middleware/keyauth.md?plain=1#L51)
1 parent 4e0f180 commit a84a7ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api/middleware/keyauth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func main() {
4747
Validator: validateAPIKey,
4848
}))
4949

50-
app.Get("/", func(c *fiber.Ctx) error {
50+
app.Get("/", func(c *fiber.Ctx) error {
5151
return c.SendString("Successfully authenticated!")
5252
})
5353

0 commit comments

Comments
 (0)