summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKimMachineGune <geon0250@gmail.com>2019-01-16 14:56:47 +0900
committerJesse Duffield <jessedduffield@gmail.com>2019-01-16 18:06:11 +1100
commit3e2406972248ab824b22c7c3965b5f5aab8c9b7b (patch)
treea3a86ee8ad439846e40396eff6bfecf06d6cff29
parentc722ea5afcb47a823f76b2e8270f60534f1a9230 (diff)
pkg: Fix typo
-rw-r--r--pkg/commands/exec_live_win.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/exec_live_win.go b/pkg/commands/exec_live_win.go
index 343e0dd9f..d06cb920b 100644
--- a/pkg/commands/exec_live_win.go
+++ b/pkg/commands/exec_live_win.go
@@ -3,7 +3,7 @@
package commands
// RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
-// TODO: Remove this hack and replace it with a propper way to run commands live on windows
+// TODO: Remove this hack and replace it with a proper way to run commands live on windows
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
return c.RunCommand(command)
}