diff options
author | NeP <93044008+nep-1@users.noreply.github.com> | 2021-12-10 13:39:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 06:39:50 +0100 |
commit | f438ca3483c785f8649f6dbd96f1a1db3c6a2eaa (patch) | |
tree | 9ae7fbbb12c36724465f9916b839ea7f7972f606 /_examples/remotes | |
parent | e4fcd078d42e945581616855ab78d8b7ed12df6c (diff) | |
download | go-git-f438ca3483c785f8649f6dbd96f1a1db3c6a2eaa.tar.gz |
examples: remote fix typo (#408)
Diffstat (limited to '_examples/remotes')
-rw-r--r-- | _examples/remotes/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_examples/remotes/main.go b/_examples/remotes/main.go index b1a91a9..d09957e 100644 --- a/_examples/remotes/main.go +++ b/_examples/remotes/main.go @@ -33,7 +33,7 @@ func main() { CheckIfError(err) // List remotes from a repository - Info("git remotes -v") + Info("git remote -v") list, err := r.Remotes() CheckIfError(err) |