summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-12-19 21:46:48 +1100
committerJesse Duffield <jessedduffield@gmail.com>2018-12-19 21:46:48 +1100
commit0afffd03cab29d133ab1458964732e29a66ae757 (patch)
tree663b9e2b4c6cae2e0a96c47f044fb499ae87d419
parent6c5e409ffa5ccc76e7364971e4e0582e45dbab54 (diff)
remove comment
-rw-r--r--pkg/commands/exec_live_default.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/commands/exec_live_default.go b/pkg/commands/exec_live_default.go
index 6063bb16a..dfdff5308 100644
--- a/pkg/commands/exec_live_default.go
+++ b/pkg/commands/exec_live_default.go
@@ -19,7 +19,6 @@ import (
// Output is a function that executes by every word that gets read by bufio
// As return of output you need to give a string that will be written to stdin
// NOTE: If the return data is empty it won't written anything to stdin
-// NOTE: You don't have to include a enter in the return data this function will do that for you
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
splitCmd := str.ToArgv(command)
cmd := exec.Command(splitCmd[0], splitCmd[1:]...)