From a567ae3c31c4d3b71ab34dac4dc70314c5de65ac Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 27 Nov 2019 15:44:49 +0100 Subject: [PATCH] client: normalize comment formatting Signed-off-by: Sebastiaan van Stijn --- client/image_import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/image_import.go b/client/image_import.go index c2972ea950..d3336d4106 100644 --- a/client/image_import.go +++ b/client/image_import.go @@ -14,7 +14,7 @@ import ( // It returns the JSON content in the response body. func (cli *Client) ImageImport(ctx context.Context, source types.ImageImportSource, ref string, options types.ImageImportOptions) (io.ReadCloser, error) { if ref != "" { - //Check if the given image name can be resolved + // Check if the given image name can be resolved if _, err := reference.ParseNormalizedNamed(ref); err != nil { return nil, err }