Correct two golint comment issues
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
This commit is contained in:
parent
21b6f54796
commit
5608db616c
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ import (
|
||||||
"regexp"
|
"regexp"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TarSumRegexp defines a regular expression to match tarsum identifiers.
|
// TarsumRegexp defines a regular expression to match tarsum identifiers.
|
||||||
var TarsumRegexp = regexp.MustCompile("tarsum(?:.[a-z0-9]+)?\\+[a-zA-Z0-9]+:[A-Fa-f0-9]+")
|
var TarsumRegexp = regexp.MustCompile("tarsum(?:.[a-z0-9]+)?\\+[a-zA-Z0-9]+:[A-Fa-f0-9]+")
|
||||||
|
|
||||||
// TarsumRegexpCapturing defines a regular expression to match tarsum identifiers with
|
// TarsumRegexpCapturing defines a regular expression to match tarsum identifiers with
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
storageDriver "github.com/docker/distribution/registry/storage/driver"
|
storageDriver "github.com/docker/distribution/registry/storage/driver"
|
||||||
)
|
)
|
||||||
|
|
||||||
// SkipDir is used as a return value from onFileFunc to indicate that
|
// ErrSkipDir is used as a return value from onFileFunc to indicate that
|
||||||
// the directory named in the call is to be skipped. It is not returned
|
// the directory named in the call is to be skipped. It is not returned
|
||||||
// as an error by any function.
|
// as an error by any function.
|
||||||
var ErrSkipDir = errors.New("skip this directory")
|
var ErrSkipDir = errors.New("skip this directory")
|
||||||
|
|
Loading…
Reference in a new issue