Commit 62ed27221ee273d9d6568cbaa296eb5f86c4a45b

Parents: 1425714e293fea96fdb04354aa47d3527030f708

From: Moritz Poldrack <git@moritz.sh>
Date: Thu Apr 7 11:15:07 2022 +0700

fixed minor typo in documentation

		

Stats

preparation.go +2/-1

Changeset

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
diff --git a/preparation.go b/preparation.go
index 72412e66823340a67cc84263410ce5756f3e9066..c96910b8243c4043fe454164e1581794e63c258f 100644
--- a/preparation.go
+++ b/preparation.go
@@ -1,3 +1,4 @@
+//go:build !windows
 // +build !windows
 
 package ansi
@@ -7,5 +8,5 @@ // output. This is not in the init function to prevent messing with the users
 // environment. On other OSes this function does absolutely nothing but does
 // still exist to allow easy cross-platform development. If you are on any OS
 // other than Windows and your Terminal does not support ANSI Sequences I'd
-// reccomend you get a normal terminal emulator.
+// recomend you get a normal terminal emulator.
 func EnableANSI() {}