Skip to content

Commit

Permalink
📚 Doc: Fix code snippet indentation in /docs/api/middleware/keyauth.md
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
grivera64 committed Feb 19, 2024
1 parent 4e0f180 commit a84a7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/middleware/keyauth.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func main() {
Validator: validateAPIKey,
}))

app.Get("/", func(c *fiber.Ctx) error {
app.Get("/", func(c *fiber.Ctx) error {
return c.SendString("Successfully authenticated!")
})

Expand Down

0 comments on commit a84a7ce

Please sign in to comment.