diff --git a/registry/storage/blobstore.go b/registry/storage/blobstore.go index 5f4344d0..f54e901d 100644 --- a/registry/storage/blobstore.go +++ b/registry/storage/blobstore.go @@ -22,7 +22,7 @@ type blobStore struct { var _ distribution.BlobProvider = &blobStore{} -// Get implements the BlobReadService.Get call. +// Get implements the BlobProvider.Get call. func (bs *blobStore) Get(ctx context.Context, dgst digest.Digest) ([]byte, error) { bp, err := bs.path(dgst) if err != nil { diff --git a/registry/storage/linkedblobstore.go b/registry/storage/linkedblobstore.go index 0412bf43..c8fe438c 100644 --- a/registry/storage/linkedblobstore.go +++ b/registry/storage/linkedblobstore.go @@ -36,7 +36,7 @@ type linkedBlobStore struct { // linkPath allows one to control the repository blob link set to which // the blob store dispatches. This is required because manifest and layer // blobs have not yet been fully merged. At some point, this functionality - // should be removed an the blob links folder should be merged. + // should be removed and the blob links folder should be merged. linkPath linkPathFunc // linkDirectoryPathSpec locates the root directories in which one might find links