From 7a244a5715e04973232b7945c3b527e579cc57cf Mon Sep 17 00:00:00 2001 From: Bobby Chen Date: Tue, 4 Jan 2022 23:06:41 -0700 Subject: [PATCH] ebiten: fixes a typo (#1930) This change fixes a misspelling of the word "multiplying" in the docstring for `ebiten.GeoM.Concat`. --- geom.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geom.go b/geom.go index d4f4af089..ca8adf784 100644 --- a/geom.go +++ b/geom.go @@ -81,7 +81,7 @@ func (g *GeoM) Element(i, j int) float64 { } // Concat multiplies a geometry matrix with the other geometry matrix. -// This is same as muptiplying the matrix other and the matrix g in this order. +// This is same as multiplying the matrix other and the matrix g in this order. func (g *GeoM) Concat(other GeoM) { a := (other.a_1+1)*(g.a_1+1) + other.b*g.c b := (other.a_1+1)*g.b + other.b*(g.d_1+1)