diff options
author | Success Go <[email protected]> | 2020-02-25 15:16:47 +0800 |
---|---|---|
committer | Francis Lavoie <[email protected]> | 2020-02-25 02:33:33 -0500 |
commit | 623a1c588ee75c6d19911fd0892d9c279e3ba87c (patch) | |
tree | bb7b33b6b3d8a4ddcf28485ff29c8259171fa20c /cmd/commandfuncs.go | |
parent | 7cca291d62c910c0544f0c0169a8f0c81627e5d3 (diff) | |
download | caddy-623a1c588ee75c6d19911fd0892d9c279e3ba87c.tar.gz caddy-623a1c588ee75c6d19911fd0892d9c279e3ba87c.zip |
Fix typo in cmdStart comment
Diffstat (limited to 'cmd/commandfuncs.go')
-rw-r--r-- | cmd/commandfuncs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/commandfuncs.go b/cmd/commandfuncs.go index df3e49812..a2c8e3de6 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) |