cmd/puppeth: fix typo in comment (#15539)

* cmd: fix typo in comment

* cmd/puppeth: tiny comment fixup
This commit is contained in:
Zoe Nolan 2017-11-24 08:58:28 +00:00 committed by Péter Szilágyi
parent f9569f3cd8
commit edc3e0efeb
1 changed files with 2 additions and 2 deletions

View File

@ -216,8 +216,8 @@ func (client *sshClient) Stream(cmd string) error {
return session.Run(cmd) return session.Run(cmd)
} }
// Upload copied the set of files to a remote server via SCP, creating any non- // Upload copies the set of files to a remote server via SCP, creating any non-
// existing folder in te mean time. // existing folders in the mean time.
func (client *sshClient) Upload(files map[string][]byte) ([]byte, error) { func (client *sshClient) Upload(files map[string][]byte) ([]byte, error) {
// Establish a single command session // Establish a single command session
session, err := client.client.NewSession() session, err := client.client.NewSession()