digest: use digest.Parse over ParseDigest

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2016-12-15 15:07:42 -08:00
parent d5cc235c48
commit 01dfa0fcb9
No known key found for this signature in database
GPG key ID: FB5F6B2905D7ECF3
7 changed files with 10 additions and 10 deletions

View file

@ -145,7 +145,7 @@ func (bs *blobStore) readlink(ctx context.Context, path string) (digest.Digest,
return "", err
}
linked, err := digest.ParseDigest(string(content))
linked, err := digest.Parse(string(content))
if err != nil {
return "", err
}