From 0aba49af2ba7a3425d409809ed649cba7a9d6e50 Mon Sep 17 00:00:00 2001 From: Anthony HAMON Date: Mon, 10 Sep 2018 22:38:25 +0200 Subject: [PATCH] commands/git : fix typo --- pkg/commands/git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") }