Skip to content

Commit 4b99c29

Browse files
committed
Fix typos, update installation instructions
There were some minor typographical errors, which I fixed. I also updated the installation instructions to reference `go install`, instead of `go get`. Starting with Go 1.16, using `go get` to install executables has been deprecated. References: - https://go-review.googlesource.com/c/go/+/266360/ - golang/go#40276
1 parent a486b09 commit 4b99c29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
A tool to manage version-tag with the semantic versioning specification.
44

5-
This tool supports only `update` semantic versiong tags.
6-
So it won't delete, replase and rollback versions.
5+
This tool supports only `update` semantic versioning tags.
6+
So it will not delete, replace, or rollback versions.
77

88
[![PkgGoDev](https://pkg.go.dev/badge/kyoh86/git-vertag)](https://pkg.go.dev/kyoh86/git-vertag)
99
[![Go Report Card](https://goreportcard.com/badge/github.com/kyoh86/git-vertag)](https://goreportcard.com/report/github.com/kyoh86/git-vertag)
@@ -13,7 +13,7 @@ So it won't delete, replase and rollback versions.
1313
## Install
1414

1515
```
16-
go get github.com/kyoh86/git-vertag
16+
go install -v github.com/kyoh86/git-vertag@latest
1717
```
1818

1919
## Usage

0 commit comments

Comments
 (0)