aboutsummaryrefslogtreecommitdiffstats
path: root/_examples
diff options
context:
space:
mode:
authorTheodore Keloglou <theodorekeloglou@gmail.com>2019-08-07 23:31:29 +0300
committerTheodore Keloglou <theodorekeloglou@gmail.com>2019-08-07 23:34:25 +0300
commite79f5331726d29c2f1213ffd942d2670d09cb40f (patch)
tree30917b880a16dd0ad27d2da353b97b6359907a7d /_examples
parent2661d86e26b9adb99ff37a82d6984030000639dd (diff)
downloadgo-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.go2
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)