doc: Fix comments

This commit is contained in:
Hajime Hoshi 2017-09-10 03:44:03 +09:00
parent 826543bbdf
commit c9bfc51dcc

View File

@ -71,7 +71,7 @@ func (g *GeoM) Scale(x, y float64) {
g.impl.Scale(x, y) g.impl.Scale(x, y)
} }
// Translate translates the matrix by (x, y). // Translate translates the matrix by (tx, ty).
func (g *GeoM) Translate(tx, ty float64) { func (g *GeoM) Translate(tx, ty float64) {
g.impl.Translate(tx, ty) g.impl.Translate(tx, ty)
} }