Merge pull request #4299 from andrewhsu/fix-project-layout

fix link to code in project-layout doc
This commit is contained in:
Mislav Marohnić 2021-09-09 18:16:47 +02:00 committed by GitHub
commit 3b20dfc032
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ commands is:
pkg/cmd/<command>/<subcommand>/<subcommand>.go
```
Following the above example, the main implementation for the `gh issue list` command, including its help
text, is in [pkg/cmd/issue/view/view.go](../pkg/cmd/issue/view/view.go)
text, is in [pkg/cmd/issue/list/list.go](../pkg/cmd/issue/list/list.go)
Other help topics not specific to any command, for example `gh help environment`, are found in
[pkg/cmd/root/help_topic.go](../pkg/cmd/root/help_topic.go).