diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2019-04-18 09:15:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 09:15:43 +0200 |
commit | 829edc9cd7fc87968b98274ad17bd8ed09293861 (patch) | |
tree | 805545526b08303bf44def4a2b3ac78dac3f9a83 | |
parent | 923642abf033cd40b5f3aa5205e517d1feb32f4d (diff) | |
parent | 73e0fe950d232779e869d9aecb5ef9e7f3635edf (diff) | |
download | go-git-829edc9cd7fc87968b98274ad17bd8ed09293861.tar.gz |
Merge pull request #1112 from HashedDan/commit-example-typo
examples: commit, fixed minor typo in info statement
-rw-r--r-- | _examples/commit/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |