fix typos in registry/storage/paths.go

Signed-off-by: bin liu <liubin0329@gmail.com>
This commit is contained in:
bin liu
2023-08-30 22:36:14 +08:00
parent b9b19409cf
commit 2513dd1f96

View File

@@ -24,7 +24,7 @@ const (
// The path layout in the storage backend is roughly as follows: // The path layout in the storage backend is roughly as follows:
// //
// <root>/v2 // <root>/v2
// ├── blob // ├── blobs
// │ └── <algorithm> // │ └── <algorithm>
// │ └── <split directory content addressable storage> // │ └── <split directory content addressable storage>
// └── repositories // └── repositories
@@ -108,7 +108,7 @@ const (
// blobsPathSpec: <root>/v2/blobs/ // blobsPathSpec: <root>/v2/blobs/
// blobPathSpec: <root>/v2/blobs/<algorithm>/<first two hex bytes of digest>/<hex digest> // blobPathSpec: <root>/v2/blobs/<algorithm>/<first two hex bytes of digest>/<hex digest>
// blobDataPathSpec: <root>/v2/blobs/<algorithm>/<first two hex bytes of digest>/<hex digest>/data // blobDataPathSpec: <root>/v2/blobs/<algorithm>/<first two hex bytes of digest>/<hex digest>/data
// blobMediaTypePathSpec: <root>/v2/blobs/<algorithm>/<first two hex bytes of digest>/<hex digest>/data // blobMediaTypePathSpec: <root>/v2/blobs/<algorithm>/<first two hex bytes of digest>/<hex digest>/data
// //
// For more information on the semantic meaning of each path and their // For more information on the semantic meaning of each path and their
// contents, please see the path spec documentation. // contents, please see the path spec documentation.
@@ -346,7 +346,7 @@ type layersPathSpec struct {
func (layersPathSpec) pathSpec() {} func (layersPathSpec) pathSpec() {}
// blobLinkPathSpec specifies a path for a blob link, which is a file with a // layerLinkPathSpec specifies a path for a blob link, which is a file with a
// blob id. The blob link will contain a content addressable blob id reference // blob id. The blob link will contain a content addressable blob id reference
// into the blob store. The format of the contents is as follows: // into the blob store. The format of the contents is as follows:
// //
@@ -403,7 +403,7 @@ type uploadDataPathSpec struct {
func (uploadDataPathSpec) pathSpec() {} func (uploadDataPathSpec) pathSpec() {}
// uploadDataPathSpec defines the path parameters for the file that stores the // uploadStartedAtPathSpec defines the path parameters for the file that stores the
// start time of an uploads. If it is missing, the upload is considered // start time of an uploads. If it is missing, the upload is considered
// unknown. Admittedly, the presence of this file is an ugly hack to make sure // unknown. Admittedly, the presence of this file is an ugly hack to make sure
// we have a way to cleanup old or stalled uploads that doesn't rely on driver // we have a way to cleanup old or stalled uploads that doesn't rely on driver