diff --git a/pkg/commands/git.go b/pkg/commands/git.go index a770c03ee..4eb62a7fd 100644 --- a/pkg/commands/git.go +++ b/pkg/commands/git.go @@ -299,7 +299,7 @@ func (c *GitCommand) Commit(message string) (*exec.Cmd, error) { return nil, c.OSCommand.RunCommand(command) } -// Pull pull from repo +// Pull pulls from repo func (c *GitCommand) Pull() error { return c.OSCommand.RunCommand("git pull --no-edit") }