chore: unnecessary use of fmt.Sprintf (#211)
This commit is contained in:
parent
54fc699377
commit
e781e0cd22
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue