From 312f7c168b4856e191876d8492539429ad2867fc Mon Sep 17 00:00:00 2001 From: shogo-ma Date: Sat, 7 Apr 2018 00:06:00 +0900 Subject: [PATCH] fix typo --- conflict/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conflict/command.go b/conflict/command.go index 8a7cba0..ea1ce9f 100644 --- a/conflict/command.go +++ b/conflict/command.go @@ -6,7 +6,7 @@ import ( "syscall" ) -// RunCommand runs the given command with arguemtns and returns the output +// RunCommand runs the given command with arguments and returns the output // Refer to https://stackoverflow.com/questions/10385551/get-exit-code-go func RunCommand(name string, dir string, args ...string) (stdout string, stderr string, exitCode int) { var outbuf, errbuf bytes.Buffer