From 7a2de5aa79e58e4b31d15baea7e6fd8b7d1d251f Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Sat, 12 Oct 2024 10:14:15 -0400 Subject: [PATCH] Revert "Update README.md (#3165)" 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 👋!") })