parent:
875e84a53b41c047190cf416455cb2ed6291e5dc
nmyk <nick@nmyk.io>
2023-02-09T19:11:58-05:00
godoc copyedit
diff --git a/cowsay.go b/cowsay.go
index e667e85a4f7aa01f1c548e6aaaaad1fbc9485a02..162108614c98acd15f2e347801137e33c6d8c4f2 100644
--- a/cowsay.go
+++ b/cowsay.go
@@ -44,7 +44,7 @@ Mood Mood
// Width determines the wrap width of the text inside the speech
// bubble. Setting Width < 0 results in no word wrap. A value of 0
- // will use the defaultWidth (40).
+ // will use the default width (40-ish).
Width int
body *template.Template
@@ -98,7 +98,7 @@ return w.Write([]byte(c.moo(string(s), think)))
}
// Cowsay is provided for convenience. It is identical to Cow{}.Say. It prints
-// the default cow speaking the provided string to stdout.
+// the default cow speaking the input string to stdout.
func Cowsay(s string) {
Cow{}.Say(s)
}