Skip to content

Commit

Permalink
Fix teeny tiny typos
Browse files Browse the repository at this point in the history
Signed-off-by: Claudia Beresford <[email protected]>
  • Loading branch information
Callisto13 committed Sep 5, 2018
1 parent 87a9d6e commit 32e6aa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/v1/linux/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts
log.G(ctx).WithError(err).WithFields(logrus.Fields{
"id": id,
"namespace": namespace,
}).Warn("failed to clen up after killed shim")
}).Warn("failed to clean up after killed shim")
}
}
shimopt = ShimRemote(r.config, r.address, cgroup, exitHandler)
Expand Down
2 changes: 1 addition & 1 deletion sys/socket_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func CreateUnixSocket(path string) (net.Listener, error) {
return net.Listen("unix", path)
}

// GetLocalListener returns a listerner out of a unix socket.
// GetLocalListener returns a listener out of a unix socket.
func GetLocalListener(path string, uid, gid int) (net.Listener, error) {
// Ensure parent directory is created
if err := mkdirAs(filepath.Dir(path), uid, gid); err != nil {
Expand Down

0 comments on commit 32e6aa7

Please sign in to comment.