From 1b876b0bf239bfb3332497f1a1080d1306e141d4 Mon Sep 17 00:00:00 2001 From: Daniel Dao Date: Tue, 11 Oct 2016 23:22:48 +0000 Subject: [PATCH] fix typos with misspell pipe the source through https://github.com/client9/misspell. typos be gone! Signed-off-by: Daniel Dao --- libcontainer/cgroups/fs/apply_raw.go | 2 +- libcontainer/cgroups/systemd/apply_systemd.go | 2 +- libcontainer/configs/cgroup_unix.go | 4 ++-- libcontainer/console_linux.go | 2 +- libcontainer/console_windows.go | 2 +- libcontainer/container.go | 2 +- libcontainer/process_linux.go | 2 +- libcontainer/rootfs_linux.go | 2 +- libcontainer/standard_init_linux.go | 2 +- utils.go | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/libcontainer/cgroups/fs/apply_raw.go b/libcontainer/cgroups/fs/apply_raw.go index 9692e4fb2..30b20632b 100644 --- a/libcontainer/cgroups/fs/apply_raw.go +++ b/libcontainer/cgroups/fs/apply_raw.go @@ -295,7 +295,7 @@ func (raw *cgroupData) path(subsystem string) (string, error) { // If the cgroup name/path is absolute do not look relative to the cgroup of the init process. if filepath.IsAbs(raw.innerPath) { - // Sometimes subsystems can be mounted togethger as 'cpu,cpuacct'. + // Sometimes subsystems can be mounted together as 'cpu,cpuacct'. return filepath.Join(raw.root, filepath.Base(mnt), raw.innerPath), nil } diff --git a/libcontainer/cgroups/systemd/apply_systemd.go b/libcontainer/cgroups/systemd/apply_systemd.go index 33814ce0f..e276a5332 100644 --- a/libcontainer/cgroups/systemd/apply_systemd.go +++ b/libcontainer/cgroups/systemd/apply_systemd.go @@ -388,7 +388,7 @@ func joinCgroups(c *configs.Cgroup, pid int) error { return nil } -// systemd represents slice heirarchy using `-`, so we need to follow suit when +// systemd represents slice hierarchy using `-`, so we need to follow suit when // generating the path of slice. Essentially, test-a-b.slice becomes // test.slice/test-a.slice/test-a-b.slice. func ExpandSlice(slice string) (string, error) { diff --git a/libcontainer/configs/cgroup_unix.go b/libcontainer/configs/cgroup_unix.go index 94b38879e..14d628981 100644 --- a/libcontainer/configs/cgroup_unix.go +++ b/libcontainer/configs/cgroup_unix.go @@ -22,7 +22,7 @@ type Cgroup struct { // The path is assumed to be relative to the host system cgroup mountpoint. Path string `json:"path"` - // ScopePrefix decribes prefix for the scope name + // ScopePrefix describes prefix for the scope name ScopePrefix string `json:"scope_prefix"` // Paths represent the absolute cgroups paths to join. @@ -95,7 +95,7 @@ type Resources struct { // IO read rate limit per cgroup per device, bytes per second. BlkioThrottleReadBpsDevice []*ThrottleDevice `json:"blkio_throttle_read_bps_device"` - // IO write rate limit per cgroup per divice, bytes per second. + // IO write rate limit per cgroup per device, bytes per second. BlkioThrottleWriteBpsDevice []*ThrottleDevice `json:"blkio_throttle_write_bps_device"` // IO read rate limit per cgroup per device, IO per second. diff --git a/libcontainer/console_linux.go b/libcontainer/console_linux.go index 7af771b65..5bc2fd753 100644 --- a/libcontainer/console_linux.go +++ b/libcontainer/console_linux.go @@ -44,7 +44,7 @@ func newConsoleFromPath(slavePath string) *linuxConsole { } } -// linuxConsole is a linux psuedo TTY for use within a container. +// linuxConsole is a linux pseudo TTY for use within a container. type linuxConsole struct { master *os.File slavePath string diff --git a/libcontainer/console_windows.go b/libcontainer/console_windows.go index a68c02f66..fc157e9b3 100644 --- a/libcontainer/console_windows.go +++ b/libcontainer/console_windows.go @@ -5,7 +5,7 @@ func NewConsole(uid, gid int) (Console, error) { return &windowsConsole{}, nil } -// windowsConsole is a Windows psuedo TTY for use within a container. +// windowsConsole is a Windows pseudo TTY for use within a container. type windowsConsole struct { } diff --git a/libcontainer/container.go b/libcontainer/container.go index 6844fbc7a..07822bf80 100644 --- a/libcontainer/container.go +++ b/libcontainer/container.go @@ -123,7 +123,7 @@ type BaseContainer interface { // SystemError - System error. Start(process *Process) (err error) - // Run immediatly starts the process inside the conatiner. Returns error if process + // Run immediately starts the process inside the conatiner. Returns error if process // fails to start. It does not block waiting for the exec fifo after start returns but // opens the fifo after start returns. // diff --git a/libcontainer/process_linux.go b/libcontainer/process_linux.go index 2f3de7e4f..bbcb783fc 100644 --- a/libcontainer/process_linux.go +++ b/libcontainer/process_linux.go @@ -146,7 +146,7 @@ func (p *setnsProcess) execSetns() error { } // terminate sends a SIGKILL to the forked process for the setns routine then waits to -// avoid the process becomming a zombie. +// avoid the process becoming a zombie. func (p *setnsProcess) terminate() error { if p.cmd.Process == nil { return nil diff --git a/libcontainer/rootfs_linux.go b/libcontainer/rootfs_linux.go index 7f951c8ea..c968261f7 100644 --- a/libcontainer/rootfs_linux.go +++ b/libcontainer/rootfs_linux.go @@ -93,7 +93,7 @@ func setupRootfs(config *configs.Config, console *linuxConsole, pipe io.ReadWrit return newSystemErrorWithCause(err, "reopening /dev/null inside container") } } - // remount dev as ro if specifed + // remount dev as ro if specified for _, m := range config.Mounts { if libcontainerUtils.CleanPath(m.Destination) == "/dev" { if m.Flags&syscall.MS_RDONLY != 0 { diff --git a/libcontainer/standard_init_linux.go b/libcontainer/standard_init_linux.go index 2104f1ade..9c19ce7ae 100644 --- a/libcontainer/standard_init_linux.go +++ b/libcontainer/standard_init_linux.go @@ -143,7 +143,7 @@ func (l *linuxStandardInit) Init() error { if err := pdeath.Restore(); err != nil { return err } - // compare the parent from the inital start of the init process and make sure that it did not change. + // compare the parent from the initial start of the init process and make sure that it did not change. // if the parent changes that means it died and we were reparented to something else so we should // just kill ourself and not cause problems for someone else. if syscall.Getppid() != l.parentPid { diff --git a/utils.go b/utils.go index 55a7e9de6..b3de00650 100644 --- a/utils.go +++ b/utils.go @@ -18,7 +18,7 @@ func fatal(err error) { os.Exit(1) } -// setupSpec performs inital setup based on the cli.Context for the container +// setupSpec performs initial setup based on the cli.Context for the container func setupSpec(context *cli.Context) (*specs.Spec, error) { bundle := context.String("bundle") if bundle != "" {