diff --git a/src/base/alias_slice.rs b/src/base/alias_slice.rs index 3fb5d793..f71262d4 100644 --- a/src/base/alias_slice.rs +++ b/src/base/alias_slice.rs @@ -378,6 +378,7 @@ pub type MatrixSliceMutMN<'a, T, R, C, RStride = U1, CStride = R> = /// A column-major matrix slice with `D` rows and columns. /// /// **Because this is an alias, not all its methods are listed here. See the [`Matrix`](crate::base::Matrix) type too.** +#[deprecated = "Use MatrixViewMut instead."] pub type MatrixSliceMutN<'a, T, D, RStride = U1, CStride = D> = Matrix>;