📚 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/main/docs/api/middleware/keyauth.md?plain=1#L51)
pull/2868/head
Giovanni Rivera 2024-02-18 18:34:55 -08:00
parent ae8f09ac3b
commit 3f43c69523
No known key found for this signature in database
GPG Key ID: 4B6728366053692F
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func main() {
Validator: validateAPIKey,
}))
app.Get("/", func(c fiber.Ctx) error {
app.Get("/", func(c fiber.Ctx) error {
return c.SendString("Successfully authenticated!")
})