From: ch3nnn Date: Wed, 16 Aug 2023 12:28:11 +0000 (+0000) Subject: fmt: fix receiver names are different X-Git-Tag: go1.22rc1~1248 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7af3107632bbc761aef3ae453f174341f7a9184b;p=gostls13.git fmt: fix receiver names are different "buffer" call the receiver "b" in other method, don't call it "bp" in another. Keep the same receiver names, as prescribed in Go Code Review Comments (https://go.dev/s/style#receiver-names). Change-Id: I9fafc799a9e4102419ed743b941bca74e908f5c0 GitHub-Last-Rev: c8b851d372f3966e3c5eec7c331ad05aacb1ebda GitHub-Pull-Request: golang/go#62066 Reviewed-on: https://go-review.googlesource.com/c/go/+/520016 Auto-Submit: Dmitri Shuralyov Reviewed-by: Rob Pike Run-TryBot: Ian Lance Taylor TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor --- diff --git a/src/fmt/print.go b/src/fmt/print.go index 9c3bd3efec..efbe3f193e 100644 --- a/src/fmt/print.go +++ b/src/fmt/print.go @@ -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.