From 765df7eed011a29a5242678b91187252055205c0 Mon Sep 17 00:00:00 2001 From: Peng Gao Date: Wed, 13 Jul 2016 23:32:38 +0800 Subject: [PATCH] Fix typo Signed-off-by: Peng Gao --- libcontainer/standard_init_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcontainer/standard_init_linux.go b/libcontainer/standard_init_linux.go index 5809b4de..599e47cb 100644 --- a/libcontainer/standard_init_linux.go +++ b/libcontainer/standard_init_linux.go @@ -140,7 +140,7 @@ func (l *linuxStandardInit) Init() error { return err } // compare the parent from the inital start of the init process and make sure that it did not change. - // if the parent changes that means it died and we were reparened to something else so we should + // 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 { return syscall.Kill(syscall.Getpid(), syscall.SIGKILL)