Skip to content

Commit

Permalink
chore: remove unnecessary explicit type
Browse files Browse the repository at this point in the history
Co-authored-by: Masih H. Derkani <[email protected]>
  • Loading branch information
Stebalien and masih authored Apr 20, 2024
1 parent 784c15d commit c64ccd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func nodesForHeight(bitWidth uint, height int) uint64 {
return 1 << heightLogTwo
}

var bufferPool sync.Pool = sync.Pool{
var bufferPool = sync.Pool{
New: func() any {
return bytes.NewBuffer(nil)
},
Expand Down

0 comments on commit c64ccd1

Please sign in to comment.