From 7b3a36f22fc1166ceb9cb78cf69b3a2f95d077da Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Sun, 13 Oct 2024 05:04:02 -0400 Subject: [PATCH] Revert "Update README.md (#3165)" (#3166) This reverts commit 9dd3d94ff24735c4e018e0b94db5bba22d8f45f3. --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 👋!") })