Skip to content

Commit

Permalink
README: fix typo and grammar (#159)
Browse files Browse the repository at this point in the history
* README: fix typo and grammar

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>

* README: fix misleading phrase

Signed-off-by: Emmanuel Chee-zaram Okeke <ecokeke21@gmail.com>

---------

Signed-off-by: Emmanuel Chee-zaram Okeke <ecokeke21@gmail.com>
  • Loading branch information
chee-zaram committed Jul 9, 2023
1 parent d37e022 commit fe20a78
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.
// To ensure 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 fe20a78

Please sign in to comment.