mirror of
https://github.com/jimeh/undent.git
synced 2026-02-19 03:56:38 +00:00
docs(godoc): fix typo in doc string for Print function
This commit is contained in:
@@ -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)...)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user