Skip to content

Commit fe20a78

Browse files
authored
README: fix typo and grammar (#159)
* 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 <[email protected]> * README: fix misleading phrase Signed-off-by: Emmanuel Chee-zaram Okeke <[email protected]> --------- Signed-off-by: Emmanuel Chee-zaram Okeke <[email protected]>
1 parent d37e022 commit fe20a78

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@ func main() {
2929
```
3030

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

3435
```go
35-
// Use the go build to generate an executable
36-
// Enusre this hello executable on your path
37-
// you can move hello to your $GOPATH/bin
38-
// or set the current dir into env variable `path`
36+
// Use the `go build` command to generate an executable.
37+
// To ensure this "hello" executable is on your path,
38+
// you can move "hello" to your $GOPATH/bin directory
39+
// or add the current directory to the `PATH` environment variable.
3940
go build -o hello
4041
```
4142

0 commit comments

Comments
 (0)