From 318202fa813b0988bfd01594916d406b7e4bccd2 Mon Sep 17 00:00:00 2001 From: Samuel <69881238+OceanTrader1@users.noreply.github.com> Date: Fri, 4 Apr 2025 11:20:43 -0400 Subject: [PATCH] fix: correct typo in validation error message for nested virtualization support (#1050) --- Sources/tart/Commands/Run.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/tart/Commands/Run.swift b/Sources/tart/Commands/Run.swift index 03679e5..c5755da 100644 --- a/Sources/tart/Commands/Run.swift +++ b/Sources/tart/Commands/Run.swift @@ -290,7 +290,7 @@ struct Run: AsyncParsableCommand { if nested { if #unavailable(macOS 15) { - throw ValidationError("Nested virtualization is supported on hosts starting with macOS 15 (Sequia), and later.") + throw ValidationError("Nested virtualization is supported on hosts starting with macOS 15 (Sequoia), and later.") } else if !VZGenericPlatformConfiguration.isNestedVirtualizationSupported { throw ValidationError("Nested virtualization is available for Mac with the M3 chip, and later.") }