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.
This commit is contained in:
Abderrahmane BENAISSA 2023-08-29 17:25:30 +01:00 committed by GitHub
parent dc9cff732e
commit ec78f2f013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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