summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorSuccess Go <successgao@protonmail.ch>2020-02-25 15:16:47 +0800
committerFrancis Lavoie <lavofr@gmail.com>2020-02-25 02:33:33 -0500
commit623a1c588ee75c6d19911fd0892d9c279e3ba87c (patch)
treebb7b33b6b3d8a4ddcf28485ff29c8259171fa20c /cmd
parent7cca291d62c910c0544f0c0169a8f0c81627e5d3 (diff)
Fix typo in cmdStart comment
Diffstat (limited to 'cmd')
-rw-r--r--cmd/commandfuncs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/commandfuncs.go b/cmd/commandfuncs.go
index df3e498..a2c8e3d 100644
--- a/cmd/commandfuncs.go
+++ b/cmd/commandfuncs.go
@@ -84,7 +84,7 @@ func cmdStart(fl Flags) (int, error) {
// begin writing the confirmation bytes to the child's
// stdin; use a goroutine since the child hasn't been
- // started yet, and writing sychronously would result
+ // started yet, and writing synchronously would result
// in a deadlock
go func() {
stdinpipe.Write(expect)