We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e47727f commit 8f83c7bCopy full SHA for 8f83c7b
internal/format/writer.go
@@ -73,11 +73,13 @@ func (w *Writer) Info(icon string, message string) {
73
}
74
75
// Printf formats according to a format specifier and writes to the underlying writer.
76
+// Prefer the dedicated methods if applicable.
77
func (w *Writer) Printf(format string, a ...any) {
78
fmt.Fprintf(w.writer(), format, a...)
79
80
81
// Println prints a formatted message to the underlying writer.
82
83
func (w *Writer) Println(a ...any) {
84
fmt.Fprintln(w.writer(), a...)
85
0 commit comments