Skip to content

Commit 7f03ad6

Browse files
committed
Fix typos
Signed-off-by: nashasha1 <[email protected]>
1 parent 901b2ea commit 7f03ad6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contrib/nvidia/nvidia.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
const nvidiaCLI = "nvidia-container-cli"
3333

3434
// Capability specifies capabilities for the gpu inside the container
35-
// Detailed explaination of options can be found:
35+
// Detailed explanation of options can be found:
3636
// https://github.com/nvidia/nvidia-container-runtime#supported-driver-capabilities
3737
type Capability string
3838

contrib/seccomp/seccomp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
)
3131

3232
// WithProfile receives the name of a file stored on disk comprising a json
33-
// formated seccomp profile, as specified by the opencontainers/runtime-spec.
33+
// formatted seccomp profile, as specified by the opencontainers/runtime-spec.
3434
// The profile is read from the file, unmarshaled, and set to the spec.
3535
func WithProfile(profile string) oci.SpecOpts {
3636
return func(_ context.Context, _ oci.Client, _ *containers.Container, s *specs.Spec) error {

remotes/docker/fetcher.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (r dockerFetcher) open(ctx context.Context, u, mediatype string, offset int
117117
}
118118
} else {
119119
// TODO: Should any cases where use of content range
120-
// without the proper header be considerd?
120+
// without the proper header be considered?
121121
// 206 responses?
122122

123123
// Discard up to offset

remotes/docker/httpreadseeker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func (hrs *httpReadSeeker) reader() (io.Reader, error) {
134134
// There is an edge case here where offset == size of the content. If
135135
// we seek, we will probably get an error for content that cannot be
136136
// sought (?). In that case, we should err on committing the content,
137-
// as the length is already satisified but we just return the empty
137+
// as the length is already satisfied but we just return the empty
138138
// reader instead.
139139

140140
hrs.rc = ioutil.NopCloser(bytes.NewReader([]byte{}))

0 commit comments

Comments
 (0)