diff --git a/.github/README.md b/.github/README.md index dbfee36383..68fbd9c9bf 100644 --- a/.github/README.md +++ b/.github/README.md @@ -73,7 +73,7 @@ func main() { app := fiber.New() // Define a route for the GET method on the root path '/' - app.Get("/", func(c *fiber.Ctx) error { + app.Get("/", func(c fiber.Ctx) error { // Send a string response to the client return c.SendString("Hello, World 👋!") })