Skip to content

Commit

Permalink
README: fix typo and grammar
Browse files Browse the repository at this point in the history
This commit corrects typos and improves grammar in README.md
for better readability and understanding.

Signed-off-by: Emmanuel Chee-zaram Okeke <ecokeke21@gmail.com>
  • Loading branch information
chee-zaram committed Jun 27, 2023
1 parent d37e022 commit 608badd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ func main() {
```

Build the program with the [go tool](https://golang.org/cmd/go/) to an
executable named `hello`. Ensure that the executable is on your path.
executable named `hello`. Ensure that the executable is in a directory in
the `PATH` environment variable.

```go
// Use the go build to generate an executable
// Enusre this hello executable on your path
// you can move hello to your $GOPATH/bin
// or set the current dir into env variable `path`
// Use the `go build` command to generate an executable.
// Ensure that this "hello" executable is on your path.
// You can move "hello" to your $GOPATH/bin directory
// or add the current directory to the `PATH` environment variable.
go build -o hello
```

Expand Down

0 comments on commit 608badd

Please sign in to comment.