Skip to content

Commit 32e6aa7

Browse files
committed
Fix teeny tiny typos
Signed-off-by: Claudia Beresford <[email protected]>
1 parent 87a9d6e commit 32e6aa7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

runtime/v1/linux/runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts
204204
log.G(ctx).WithError(err).WithFields(logrus.Fields{
205205
"id": id,
206206
"namespace": namespace,
207-
}).Warn("failed to clen up after killed shim")
207+
}).Warn("failed to clean up after killed shim")
208208
}
209209
}
210210
shimopt = ShimRemote(r.config, r.address, cgroup, exitHandler)

sys/socket_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func CreateUnixSocket(path string) (net.Listener, error) {
4242
return net.Listen("unix", path)
4343
}
4444

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

0 commit comments

Comments
 (0)