From d9b8691c6b137bb59ee185f69acf868a8f42b77d Mon Sep 17 00:00:00 2001 From: ferhat elmas Date: Mon, 20 Nov 2017 03:54:25 +0100 Subject: examples,plumbing,utils: typo fixes --- _examples/commit/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '_examples/commit') diff --git a/_examples/commit/main.go b/_examples/commit/main.go index aeb1d4f..556cb9c 100644 --- a/_examples/commit/main.go +++ b/_examples/commit/main.go @@ -12,13 +12,13 @@ import ( "gopkg.in/src-d/go-git.v4/plumbing/object" ) -// Basic example of how to commit changes to the current branch to an existant +// Basic example of how to commit changes to the current branch to an existent // repository. func main() { CheckArgs("") directory := os.Args[1] - // Opens an already existant repository. + // Opens an already existent repository. r, err := git.PlainOpen(directory) CheckIfError(err) -- cgit