diff options
Diffstat (limited to 'worktree_commit.go')
-rw-r--r-- | worktree_commit.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/worktree_commit.go b/worktree_commit.go index 9cefdcf..bec75b2 100644 --- a/worktree_commit.go +++ b/worktree_commit.go @@ -22,7 +22,7 @@ func (w *Worktree) Commit(msg string, opts *CommitOptions) (plumbing.Hash, error return plumbing.ZeroHash, err } - if opts.All == true { + if opts.All { if err := w.autoAddModifiedAndDeleted(); err != nil { return plumbing.ZeroHash, err } @@ -103,7 +103,7 @@ func (w *Worktree) buildCommitObject(msg string, opts *CommitOptions, tree plumb } // commitIndexHelper converts a given index.Index file into multiple git objects -// reading the blogs from the given filesystem and creating the trees from the +// reading the blobs from the given filesystem and creating the trees from the // index structure. The created objects are pushed to a given Storer. type commitIndexHelper struct { fs billy.Filesystem |