ebiten: fixes a typo (#1930)

This change fixes a misspelling of the word "multiplying" in the docstring for `ebiten.GeoM.Concat`.
This commit is contained in:
Bobby Chen 2022-01-04 23:06:41 -07:00 committed by GitHub
parent b581fe8f22
commit 7a244a5715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)