From 962e89417ca2eab9254fa4fda5a27fc925cf0965 Mon Sep 17 00:00:00 2001 From: Joe Clay <27cupsofcoffee@gmail.com> Date: Sun, 23 Sep 2018 23:30:14 +0100 Subject: [PATCH] Fix typo in GLM alias docs --- 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 66674285..c90075ec 100644 --- a/nalgebra-glm/src/aliases.rs +++ b/nalgebra-glm/src/aliases.rs @@ -199,7 +199,7 @@ pub type Mat4x2 = Matrix4x2; pub type Mat4x3 = Matrix4x3; /// A 4x4 matrix with `f32` components. pub type Mat4x4 = Matrix4; -/// A 4x3 matrix with `f32` components. +/// A 4x4 matrix with `f32` components. pub type Mat4 = Matrix4; /// A quaternion with f32 components.