doc: remove -d flag in go get commands (#4251)

As pointed [here](https://go.dev/doc/go-get-install-deprecation),
since Go 1.18, `go get` always act as `go get -d`.
This commit is contained in:
leaked memory
2024-11-02 11:56:16 -03:00
committed by GitHub
parent 89ad7fa39d
commit 365b498176
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ go mod init todo
Run the following Go commands to install Ent, and tell it to initialize the project structure along with a `Todo` schema.
```console
go get -d entgo.io/ent/cmd/ent
go get entgo.io/ent/cmd/ent
```
```console