diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2019-08-11 23:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-11 23:42:48 +0200 |
commit | 9feb9fe755bfd17e31c3949c01d187179103249b (patch) | |
tree | 30917b880a16dd0ad27d2da353b97b6359907a7d | |
parent | 2661d86e26b9adb99ff37a82d6984030000639dd (diff) | |
parent | e79f5331726d29c2f1213ffd942d2670d09cb40f (diff) | |
download | go-git-9feb9fe755bfd17e31c3949c01d187179103249b.tar.gz |
Merge pull request #1208 from sirodoht/fix-example-pull
Fix typo on pull example
-rw-r--r-- | _examples/pull/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_examples/pull/main.go b/_examples/pull/main.go index 06369fa..6f258c8 100644 --- a/_examples/pull/main.go +++ b/_examples/pull/main.go @@ -13,7 +13,7 @@ func main() { CheckArgs("<path>") path := os.Args[1] - // We instance\iate a new repository targeting the given path (the .git folder) + // We instantiate a new repository targeting the given path (the .git folder) r, err := git.PlainOpen(path) CheckIfError(err) |