diff options
author | Theodore Keloglou <theodorekeloglou@gmail.com> | 2019-08-07 23:31:29 +0300 |
---|---|---|
committer | Theodore Keloglou <theodorekeloglou@gmail.com> | 2019-08-07 23:34:25 +0300 |
commit | e79f5331726d29c2f1213ffd942d2670d09cb40f (patch) | |
tree | 30917b880a16dd0ad27d2da353b97b6359907a7d /_examples | |
parent | 2661d86e26b9adb99ff37a82d6984030000639dd (diff) | |
download | go-git-e79f5331726d29c2f1213ffd942d2670d09cb40f.tar.gz |
examples: Fix typo on pull example
Signed-off-by: Theodore Keloglou <theodorekeloglou@gmail.com>
Diffstat (limited to '_examples')
-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) |