Fix minor typos

This commit is contained in:
Thomas Vincent 2018-09-26 23:15:57 +02:00 committed by Sébastien Crozet
parent a8ae62ea52
commit 7331807a6d
1 changed files with 3 additions and 3 deletions

View File

@ -13,14 +13,14 @@ use base::Matrix;
*
*
*/
/// A staticaly sized column-major matrix with `R` rows and `C` columns.
/// A statically sized column-major matrix with `R` rows and `C` columns.
#[deprecated(note = "This matrix name contains a typo. Use MatrixMN instead.")]
pub type MatrixNM<N, R, C> = Matrix<N, R, C, Owned<N, R, C>>;
/// A staticaly sized column-major matrix with `R` rows and `C` columns.
/// A statically sized column-major matrix with `R` rows and `C` columns.
pub type MatrixMN<N, R, C> = Matrix<N, R, C, Owned<N, R, C>>;
/// A staticaly sized column-major square matrix with `D` rows and columns.
/// A statically sized column-major square matrix with `D` rows and columns.
pub type MatrixN<N, D> = MatrixMN<N, D, D>;
/// A dynamically sized column-major matrix.