From ec78f2f0134d6a45425ebd81666db2aa918816f0 Mon Sep 17 00:00:00 2001 From: Abderrahmane BENAISSA <76059937+Abdulrahman-02@users.noreply.github.com> Date: Tue, 29 Aug 2023 17:25:30 +0100 Subject: [PATCH] Removed unnecessary shell symbol from installation command I've made a small modification to the code snippet in the documentation. The "$" symbol was removed from the installation command to enhance user-friendliness. When users copy and paste the command into the terminal, they won't need to delete the "$" symbol. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e007bf2f..30261dfc 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ to your code, and then `go [build|run|test]` will automatically fetch the necess Otherwise, run the following Go command to install the `gin` package: ```sh -$ go get -u github.com/gin-gonic/gin +go get -u github.com/gin-gonic/gin ``` ### Running Gin