Skip to content

Commit b06b745

Browse files
authored
Merge pull request #649 from q384566678/spell-fix
fix some misspells
2 parents 05b5772 + 58ea84a commit b06b745

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ validation/linux_cgroups_hugetlb.t .................... 0/1
6969
7070
validation/linux_cgroups_memory.t ..................... 9/9
7171
validation/linux_rootfs_propagation_shared.t ...... 252/282
72-
not ok shared root propogation exposes "/target348456609/mount892511628/example376408222"
72+
not ok shared root propagation exposes "/target348456609/mount892511628/example376408222"
7373
7474
Skipped: 29
7575
/dev/null (default device) has unconfigured permissions

cmd/runtimetest/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,11 +583,11 @@ func (c *complianceTester) validateRootfsPropagation(spec *rspec.Spec) error {
583583
exposed = true
584584
}
585585
if spec.Linux.RootfsPropagation == "shared" {
586-
c.harness.Ok(exposed, fmt.Sprintf("shared root propogation exposes %q", targetFile))
586+
c.harness.Ok(exposed, fmt.Sprintf("shared root propagation exposes %q", targetFile))
587587
} else {
588588
c.harness.Ok(
589589
!exposed,
590-
fmt.Sprintf("%s root propogation does not expose %q", spec.Linux.RootfsPropagation, targetFile),
590+
fmt.Sprintf("%s root propagation does not expose %q", spec.Linux.RootfsPropagation, targetFile),
591591
)
592592
}
593593
case "unbindable":

man/oci-runtime-tool-generate.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ read the configuration from `config.json`.
274274
**--linux-realtime-runtime**=REALTIMERUNTIME
275275
Specifies a period of time in microseconds for the longest continuous period in which the tasks in a cgroup have access to CPU resources.
276276

277-
**--linux-rootfs-propagation**=PROPOGATIONMODE
277+
**--linux-rootfs-propagation**=PROPAGATIONMODE
278278
Mount propagation for root filesystem.
279279
Values are "(r)shared, (r)private, (r)slave, (r)unbindable"
280280

validation/util/container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func (r *Runtime) Delete() (err error) {
193193
}
194194

195195
// Clean deletes the container. If removeBundle is set, the bundle
196-
// directory is removed after the container is deleted succesfully or, if
196+
// directory is removed after the container is deleted successfully or, if
197197
// forceRemoveBundle is true, after the deletion attempt regardless of
198198
// whether it was successful or not.
199199
func (r *Runtime) Clean(removeBundle bool, forceRemoveBundle bool) error {

0 commit comments

Comments
 (0)