commit 69ee1146899022c674eae83e9f0650cf919f06e0
parent 0914475edd89cf32d2bfb354f63e6b87f8b8a80f
Author: Frederic Cambus <fred@statdns.com>
Date: Tue, 11 Jun 2019 08:49:42 +0200
Fix typo in an error message.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ansigo.go b/ansigo.go
@@ -263,7 +263,7 @@ func main() {
// Create Output File
outputFile, err := os.Create(output)
if err != nil {
- fmt.Println("ERROR: Can't create ouput file.")
+ fmt.Println("ERROR: Can't create output file.")
os.Exit(1)
}