From 75dc51084b0fd569cc61a270ea6337a894b497a3 Mon Sep 17 00:00:00 2001 From: SaintMalik <37118134+saintmalik@users.noreply.github.com> Date: Sun, 22 Aug 2021 08:25:15 +0100 Subject: [PATCH] fix typos in docs --- 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 cf9758b46..4bbdbad40 100644 --- a/docs/project-layout.md +++ b/docs/project-layout.md @@ -37,7 +37,7 @@ manual pages and published under https://cli.github.com/manual/. To illustrate how GitHub CLI works in its typical mode of operation, let's build the project, run a command, and talk through which code gets run in order. -1. `go run script/build.go` - Makes sure all external Go depedencies are fetched, then compiles the +1. `go run script/build.go` - Makes sure all external Go dependencies are fetched, then compiles the `cmd/gh/main.go` file into a `bin/gh` binary. 2. `bin/gh issue list --limit 5` - Runs the newly built `bin/gh` binary (note: on Windows you must use backslashes like `bin\gh`) and passes the following arguments to the process: `["issue", "list", "--limit", "5"]`.