From c9bfc51dccd3ffa15376e81a9b62291099886bde Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 10 Sep 2017 03:44:03 +0900 Subject: [PATCH] doc: Fix comments --- geom.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geom.go b/geom.go index 433218d2e..b8c914520 100644 --- a/geom.go +++ b/geom.go @@ -71,7 +71,7 @@ func (g *GeoM) Scale(x, y float64) { 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) { g.impl.Translate(tx, ty) }