aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorZoe Nolan <github@zoenolan.org>2017-11-24 16:58:28 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-11-24 16:58:28 +0800
commitedc3e0efeb7f07872bc4bc042433c7135297a5ed (patch)
tree4143aad96fae3f48a61b98a8b6d6d482e5beba83 /cmd
parentf9569f3cd8a05dff5be5da83a5d8c70c1b23dd3e (diff)
downloaddexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.tar
dexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.tar.gz
dexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.tar.bz2
dexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.tar.lz
dexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.tar.xz
dexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.tar.zst
dexon-edc3e0efeb7f07872bc4bc042433c7135297a5ed.zip
cmd/puppeth: fix typo in comment (#15539)
* cmd: fix typo in comment * cmd/puppeth: tiny comment fixup
Diffstat (limited to 'cmd')
-rw-r--r--cmd/puppeth/ssh.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/puppeth/ssh.go b/cmd/puppeth/ssh.go
index a254a7f7a..158261ce0 100644
--- a/cmd/puppeth/ssh.go
+++ b/cmd/puppeth/ssh.go
@@ -216,8 +216,8 @@ func (client *sshClient) Stream(cmd string) error {
return session.Run(cmd)
}
-// Upload copied the set of files to a remote server via SCP, creating any non-
-// existing folder in te mean time.
+// Upload copies the set of files to a remote server via SCP, creating any non-
+// existing folders in the mean time.
func (client *sshClient) Upload(files map[string][]byte) ([]byte, error) {
// Establish a single command session
session, err := client.client.NewSession()