Fix minor typos
This commit is contained in:
parent
a8ae62ea52
commit
7331807a6d
|
@ -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.")]
|
#[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>>;
|
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>>;
|
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>;
|
pub type MatrixN<N, D> = MatrixMN<N, D, D>;
|
||||||
|
|
||||||
/// A dynamically sized column-major matrix.
|
/// A dynamically sized column-major matrix.
|
||||||
|
|
Loading…
Reference in New Issue