From e79f5331726d29c2f1213ffd942d2670d09cb40f Mon Sep 17 00:00:00 2001 From: Theodore Keloglou Date: Wed, 7 Aug 2019 23:31:29 +0300 Subject: examples: Fix typo on pull example Signed-off-by: Theodore Keloglou --- _examples/pull/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 := 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) -- cgit