From 73e0fe950d232779e869d9aecb5ef9e7f3635edf Mon Sep 17 00:00:00 2001 From: HashedDan Date: Mon, 15 Apr 2019 14:59:47 -0500 Subject: examples: commit, fixed minor typo in info statement Signed-off-by: HashedDan --- _examples/commit/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_examples/commit/main.go b/_examples/commit/main.go index ec296b9..f184b81 100644 --- a/_examples/commit/main.go +++ b/_examples/commit/main.go @@ -27,7 +27,7 @@ func main() { // ... we need a file to commit so let's create a new file inside of the // worktree of the project using the go standard library. - Info("echo \"hellow world!\" > example-git-file") + Info("echo \"hello world!\" > example-git-file") filename := filepath.Join(directory, "example-git-file") err = ioutil.WriteFile(filename, []byte("hello world!"), 0644) CheckIfError(err) -- cgit