소스 검색

Typo fix in api\client\utils.go

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard 10 년 전
부모
커밋
84aec1e8e6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      api/client/utils.go

+ 1 - 1
api/client/utils.go

@@ -33,7 +33,7 @@ var (
 	errConnectionRefused = errors.New("Cannot connect to the Docker daemon. Is 'docker -d' running on this host?")
 )
 
-// HTTPClient creates a new HTP client with the cli's client transport instance.
+// HTTPClient creates a new HTTP client with the cli's client transport instance.
 func (cli *DockerCli) HTTPClient() *http.Client {
 	return &http.Client{Transport: cli.transport}
 }