소스 검색

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

* cmd: fix typo in comment

* cmd/puppeth: tiny comment fixup
Zoe Nolan 8 년 전
부모
커밋
edc3e0efeb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      cmd/puppeth/ssh.go

+ 2 - 2
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()