From fc17d7cc41a875c576a144ad54c7ce1b8620178e Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Wed, 11 Jan 2023 21:58:07 +0000 Subject: [PATCH] virtcontainers: Fix misspelling in error message This PR fixes a misspelling in the error message when it tries to run a system without Confidential computing support. Fixes #6042 Signed-off-by: Gabriela Cervantes --- src/runtime/virtcontainers/clh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/virtcontainers/clh.go b/src/runtime/virtcontainers/clh.go index 75261c49c2..7f5bb1c9e1 100644 --- a/src/runtime/virtcontainers/clh.go +++ b/src/runtime/virtcontainers/clh.go @@ -434,7 +434,7 @@ func (clh *cloudHypervisor) enableProtection() error { return errors.New("SEV-SNP protection is not supported by Cloud Hypervisor") default: - return errors.New("This system doesn't support Confidentian Computing (Guest Protection)") + return errors.New("This system doesn't support Confidential Computing (Guest Protection)") } }