Merge pull request #449 from xulike666/fight-for-readability

Fix all typos I found in this repo.
This commit is contained in:
Michael Crosby 2017-01-19 10:58:20 -08:00 committed by GitHub
commit 983d817470
11 changed files with 16 additions and 16 deletions

View file

@ -7,7 +7,7 @@ import (
"os"
)
// NewConsole returns an initalized console that can be used within a container by copying bytes
// NewConsole returns an initialized console that can be used within a container by copying bytes
// from the master side to the slave that is attached as the tty for the container's init process.
func newConsole(uid, gid int) (*os.File, string, error) {
return nil, "", errors.New("newConsole not implemented on Solaris")

View file

@ -27,7 +27,7 @@ type controlMessage struct {
}
// containerd-shim is a small shim that sits in front of a runtime implementation
// that allows it to be repartented to init and handle reattach from the caller.
// that allows it to be reparented to init and handle reattach from the caller.
//
// the cwd of the shim should be the path to the state directory where the shim
// can locate fifos and other information.