fmt: fix receiver names are different

This commit is contained in:
ch3nnn 2023-08-16 20:10:23 +08:00
parent 16ec27b47c
commit c8b851d372

View file

@ -112,8 +112,8 @@ func (b *buffer) writeByte(c byte) {
*b = append(*b, c)
}
func (bp *buffer) writeRune(r rune) {
*bp = utf8.AppendRune(*bp, r)
func (b *buffer) writeRune(r rune) {
*b = utf8.AppendRune(*b, r)
}
// pp is used to store a printer's state and is reused with sync.Pool to avoid allocations.