docs(godoc): fix typo in doc string for Print function

This commit is contained in:
2021-02-22 22:51:46 +00:00
parent 86be1bf614
commit 5a4b199462

View File

@@ -105,7 +105,7 @@ func Stringf(format string, a ...interface{}) string {
return fmt.Sprintf(String(format), a...)
}
// Print will undent any strings arguments before passing them to fmt.Print.
// Print will undent any string arguments before passing them to fmt.Print.
func Print(a ...interface{}) (n int, err error) {
return fmt.Print(undentInterfaces(a)...)
}