chore: unnecessary use of fmt.Sprintf

This commit is contained in:
guoguangwu 2023-07-10 17:19:17 +08:00
parent 54fc699377
commit 83a40ca00a

View file

@ -140,7 +140,7 @@ func (vr *vectorRenderer) ArcTo(cx, cy int, rx, ry, startAngle, delta float64) {
// Close closes a shape. // Close closes a shape.
func (vr *vectorRenderer) Close() { func (vr *vectorRenderer) Close() {
vr.p = append(vr.p, fmt.Sprintf("Z")) vr.p = append(vr.p, "Z")
} }
// Stroke draws the path with no fill. // Stroke draws the path with no fill.