diff options
-rw-r--r-- | _examples/open/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_examples/open/main.go b/_examples/open/main.go index dec183e..71c6b84 100644 --- a/_examples/open/main.go +++ b/_examples/open/main.go @@ -14,7 +14,7 @@ func main() { CheckArgs("<path>") path := os.Args[1] - // We instanciate 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) |