summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike JS. Choi <mkchoi212@icloud.com>2018-04-06 11:23:31 -0500
committerGitHub <noreply@github.com>2018-04-06 11:23:31 -0500
commit2afd0bd15d7c13df47e1a60dbf1fa104c3baac25 (patch)
tree15bb6cddc85391d558a042177d47b0a66bc8e8e4
parentfb868ea8b8683d0f1dc5376b1719b535b6c958a3 (diff)
parent312f7c168b4856e191876d8492539429ad2867fc (diff)
Merge pull request #33 from shogo-ma/master
fix typo
-rw-r--r--conflict/command.go2
1 files changed, 1 insertions, 1 deletions
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