Fix typo in GLM alias docs

This commit is contained in:
Joe Clay 2018-09-23 23:30:14 +01:00 committed by Sébastien Crozet
parent cad07f23dc
commit 962e89417c
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ pub type Mat4x2 = Matrix4x2<f32>;
pub type Mat4x3 = Matrix4x3<f32>;
/// A 4x4 matrix with `f32` components.
pub type Mat4x4 = Matrix4<f32>;
/// A 4x3 matrix with `f32` components.
/// A 4x4 matrix with `f32` components.
pub type Mat4 = Matrix4<f32>;
/// A quaternion with f32 components.