Skip to content

Commit

Permalink
Fix typos, update installation instructions
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mojotx committed Jun 17, 2022
1 parent a486b09 commit 4b99c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

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

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

```
go get github.com/kyoh86/git-vertag
go install -v github.com/kyoh86/git-vertag@latest
```

## Usage
Expand Down

0 comments on commit 4b99c29

Please sign in to comment.