Skip to content

Commit

Permalink
Mention recursive-ness of generate ./...
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathew Byrne committed Nov 28, 2018
1 parent e236d8f commit b9fbb64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ At the top of our `resolvers.go` add the following line:
//go:generate go run scripts/gqlgen.go -v
```

This magic comment tells `go generate` what command to run when we want to regenerate our code. You can now run any generation commands for your project with:
This magic comment tells `go generate` what command to run when we want to regenerate our code. To run go generate recursively over your entire project, use this command:

```go
go generate ./...
Expand Down

0 comments on commit b9fbb64

Please sign in to comment.