From f2a069d6701d77a0b32f75f94e0817adaf3e7f70 Mon Sep 17 00:00:00 2001 From: Ross Goldberg Date: Sun, 17 Jan 2021 05:30:23 -0500 Subject: [PATCH] Fixed Warning typo in printError --- MasKit/Formatters/Utilities.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MasKit/Formatters/Utilities.swift b/MasKit/Formatters/Utilities.swift index 3044758e5..2b069f286 100644 --- a/MasKit/Formatters/Utilities.swift +++ b/MasKit/Formatters/Utilities.swift @@ -33,7 +33,7 @@ func printWarning(_ message: String) { public func printError(_ message: String) { guard isatty(fileno(stdout)) != 0 else { - print("Warning: \(message)") + print("Error: \(message)") return }