From ad4a598a7c00a82fe1bc068c2a0ea52381815c7a Mon Sep 17 00:00:00 2001 From: Zoe Nolan Date: Tue, 21 Nov 2017 17:38:53 +0000 Subject: [PATCH] Fix typo in comment --- cmd/puppeth/ssh.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/puppeth/ssh.go b/cmd/puppeth/ssh.go index ec6a1b669a..69fa8ecd6c 100644 --- a/cmd/puppeth/ssh.go +++ b/cmd/puppeth/ssh.go @@ -215,8 +215,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 copy 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()