diff options
| author | 2026-03-08 13:33:47 +0800 | |
|---|---|---|
| committer | 2026-03-08 13:33:47 +0800 | |
| commit | 6820f071511ea90e04f759e6de02502ae828022f (patch) | |
| tree | 08e37d510401abcf4dc58246b59cadeaff44cb1d /internal | |
| parent | receivepack: Period punctuate progress messages (diff) | |
| signature | No signature | |
internal/utils: Rename WriteProgressf to FprintfBestEffort v0.1.78
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/utils/progress.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/utils/progress.go b/internal/utils/progress.go index f97dedc6..acb763ac 100644 --- a/internal/utils/progress.go +++ b/internal/utils/progress.go @@ -6,10 +6,10 @@ import ( "io" ) -// WriteProgressf writes one formatted progress message to w. +// FprintfBestEffort writes one formatted message to w. // // It is nil-safe and ignores write errors by design. -func WriteProgressf(w io.Writer, format string, args ...any) { +func FprintfBestEffort(w io.Writer, format string, args ...any) { if w == nil { return } |
