ui/draw: typo

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-06-01 18:21:58 +02:00
parent 16a55850cb
commit d752040f17
+1 -1
View File
@@ -92,7 +92,7 @@ func (p *PathBuilder) Quad(ctrl, to f32.Point) {
}
func (p *PathBuilder) quadTo(ctrl, to f32.Point) {
// Zero width curve don't contribute to stenciling.
// Zero width curves don't contribute to stenciling.
if p.pen.X == to.X && p.pen.X == ctrl.X {
p.pen = to
return