From 84aec1e8e6e6b3e7ea2da31fcae5a80df026edc6 Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 10 Jun 2015 15:24:53 -0700 Subject: [PATCH] Typo fix in api\client\utils.go Signed-off-by: John Howard --- api/client/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client/utils.go b/api/client/utils.go index 6fb9b256fd..5838689283 100644 --- a/api/client/utils.go +++ b/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} }