macos: address some feedback

This commit is contained in:
Mitchell Hashimoto
2025-06-21 06:42:31 -07:00
parent e4c13cdba8
commit 020976bf88
3 changed files with 12 additions and 12 deletions

View File

@@ -5,9 +5,9 @@ enum GhosttyIntentError: Error, CustomLocalizedStringResourceConvertible {
var localizedStringResource: LocalizedStringResource {
switch self {
case .appUnavailable: return "The Ghostty app isn't properly initialized."
case .surfaceNotFound: return "The terminal no longer exists."
case .permissionDenied: return "Ghostty doesn't allow Shortcuts."
case .appUnavailable: "The Ghostty app isn't properly initialized."
case .surfaceNotFound: "The terminal no longer exists."
case .permissionDenied: "Ghostty doesn't allow Shortcuts."
}
}
}