From 628af083f87ae2539b53c92c5b5c937b33f0504e Mon Sep 17 00:00:00 2001 From: Jin-Hwan Jeong Date: Sat, 11 Jul 2015 08:19:18 +0900 Subject: [PATCH] typo: exists -> exits Signed-off-by: Jin-Hwan Jeong --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index 5c35edc6b..9f59b0da0 100644 --- a/utils.go +++ b/utils.go @@ -125,7 +125,7 @@ func getContainer(context *cli.Context) (libcontainer.Container, error) { } // fatal prints the error's details if it is a libcontainer specific error type -// then exists the program with an exit status of 1. +// then exits the program with an exit status of 1. func fatal(err error) { if lerr, ok := err.(libcontainer.Error); ok { lerr.Detail(os.Stderr)