From 7519421fc0a712e1a7a28628f035ac77ce2de33c Mon Sep 17 00:00:00 2001 From: Andrew Hsu Date: Thu, 9 Sep 2021 10:24:42 -0500 Subject: [PATCH] fix link to code in project-layout doc Update link to code so it matches given example in doc: `gh help issue list`. --- docs/project-layout.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/project-layout.md b/docs/project-layout.md index 4bbdbad40..60d0c2aac 100644 --- a/docs/project-layout.md +++ b/docs/project-layout.md @@ -24,7 +24,7 @@ commands is: pkg/cmd///.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).