summaryrefslogtreecommitdiffhomepage
path: root/runsc/container
diff options
context:
space:
mode:
authorkevin.xu <cming.xu@gmail.com>2020-04-27 21:53:04 +0800
committerGitHub <noreply@github.com>2020-04-27 21:53:04 +0800
commit9a4ae0322e401c444e5091b0a5e727691a53d9e1 (patch)
tree022a3fc8f308ea17195bc3ad421a13f884e7c8c3 /runsc/container
parente896ca54db67524afc20b644d43c72185e72dc0e (diff)
Update container.go
typo, should be `start` in comments
Diffstat (limited to 'runsc/container')
-rw-r--r--runsc/container/container.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/container/container.go b/runsc/container/container.go
index 117ea7d7b..e0153832c 100644
--- a/runsc/container/container.go
+++ b/runsc/container/container.go
@@ -421,7 +421,7 @@ func (c *Container) Start(conf *boot.Config) error {
return err
}
} else {
- // Join cgroup to strt gofer process to ensure it's part of the cgroup from
+ // Join cgroup to start gofer process to ensure it's part of the cgroup from
// the start (and all their children processes).
if err := runInCgroup(c.Sandbox.Cgroup, func() error {
// Create the gofer process.