From f710429a3ac6fe8132f7d3b2e69daaad5f40452f Mon Sep 17 00:00:00 2001 From: garyemerson Date: Mon, 5 Feb 2018 20:28:17 -0800 Subject: [PATCH] Update TypedTransform2D docs I think matrix dimensions are typically talked about as by instead of the opposite by . --- src/transform2d.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transform2d.rs b/src/transform2d.rs index d782a2f..a9ee210 100644 --- a/src/transform2d.rs +++ b/src/transform2d.rs @@ -21,7 +21,7 @@ use std::fmt; use num_traits::NumCast; define_matrix! { - /// A 2d transform stored as a 2 by 3 matrix in row-major order in memory. + /// A 2d transform stored as a 3 by 2 matrix in row-major order in memory. /// /// Transforms can be parametrized over the source and destination units, to describe a /// transformation from a space to another.