From e54c89da0ca56b4e5d62d8253b59bd002b1d6337 Mon Sep 17 00:00:00 2001 From: Pete Goldsmith Date: Tue, 6 Sep 2022 23:23:41 +1000 Subject: [PATCH] Clarify if guest or host is unsupported (#228) --- Sources/tart/VM.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/tart/VM.swift b/Sources/tart/VM.swift index 6089472..ee07b83 100644 --- a/Sources/tart/VM.swift +++ b/Sources/tart/VM.swift @@ -14,7 +14,7 @@ struct UnsupportedOSError: Error, CustomStringConvertible { let description: String init(_ what: String, _ plural: String) { - description = "error: \(what) \(plural) only supported on macOS 13.0 (Ventura) or newer" + description = "error: \(what) \(plural) only supported on hosts running macOS 13.0 (Ventura) or newer" } }