From 6538e6d0bd81fc26e68a1468baad3b92277e0474 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 3 Oct 2023 17:48:04 -0700 Subject: [PATCH] libct: fix a typo syncrhonisation ==> synchronisation Signed-off-by: Kir Kolyshkin --- libcontainer/init_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcontainer/init_linux.go b/libcontainer/init_linux.go index edb112f64bd..0abbccf569f 100644 --- a/libcontainer/init_linux.go +++ b/libcontainer/init_linux.go @@ -108,7 +108,7 @@ func Init() { // error, it means the initialization has failed. If the error is returned, // it means the error can not be communicated back to the parent. func startInitialization() (retErr error) { - // Get the syncrhonisation pipe. + // Get the synchronisation pipe. envSyncPipe := os.Getenv("_LIBCONTAINER_SYNCPIPE") syncPipeFd, err := strconv.Atoi(envSyncPipe) if err != nil {