From 6eb642625b990d2206cdc6bafe3bc09609d81d6e Mon Sep 17 00:00:00 2001 From: Zacchary Dempsey-Plante Date: Fri, 30 Jul 2021 16:18:31 +0000 Subject: [PATCH] Fix a typo in the doc comment for `Mat2x3` Currently, the doc comment for `Mat2x3` incorrectly describes it as a 2x2 matrix. Obviously this is a very minor issue, but I figured it was worth fixing. --- nalgebra-glm/src/aliases.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nalgebra-glm/src/aliases.rs b/nalgebra-glm/src/aliases.rs index 0bf7b639..ad16828f 100644 --- a/nalgebra-glm/src/aliases.rs +++ b/nalgebra-glm/src/aliases.rs @@ -320,7 +320,7 @@ pub type DMat4x4 = Matrix4; pub type Mat2 = Matrix2; /// A 2x2 matrix with `f32` components. pub type Mat2x2 = Matrix2; -/// A 2x2 matrix with `f32` components. +/// A 2x3 matrix with `f32` components. pub type Mat2x3 = Matrix2x3; /// A 2x4 matrix with `f32` components. pub type Mat2x4 = Matrix2x4;