feat: total use upper letter

main
git 2025-01-01 20:31:39 +08:00
parent 1c575a19c9
commit 2a2ba16833
Signed by: git
GPG Key ID: 3F65EFFA44207ADD
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func (b *limitBuffer) Write(p []byte) (n int, err error) {
// String ..
func (b *limitBuffer) String() string {
if b.length > b.limit {
return b.buf.String() + fmt.Sprintf("...(total %dB)", b.length)
return fmt.Sprintf("%s...(Total %dB)", b.buf.String(), b.length)
}
return b.buf.String()