From 48d7b175a345fc9c3d85c7f8cfb7999bcb81719b Mon Sep 17 00:00:00 2001 From: Adrian H Date: Tue, 23 Apr 2024 08:30:24 +0700 Subject: [PATCH] Fixed spacing in documentation in matrix_view.rs Fixed spacing in documentation. --- src/base/matrix_view.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/matrix_view.rs b/src/base/matrix_view.rs index 00a4e85c..a5f2681e 100644 --- a/src/base/matrix_view.rs +++ b/src/base/matrix_view.rs @@ -546,7 +546,7 @@ macro_rules! matrix_view_impl ( $me.$generic_view_with_steps(start, shape, steps) } - /// Slices this matrix starting at its component `(irow, icol)` and with `(RVIEW,CVIEW)` + /// Slices this matrix starting at its component `(irow, icol)` and with `(RVIEW, CVIEW)` /// consecutive components. #[inline] #[deprecated = slice_deprecation_note!($fixed_view)] @@ -556,7 +556,7 @@ macro_rules! matrix_view_impl ( } /// Return a view of this matrix starting at its component `(irow, icol)` and with - /// `(RVIEW,CVIEW)` consecutive components. + /// `(RVIEW, CVIEW)` consecutive components. #[inline] pub fn $fixed_view($me: $Me, irow: usize, icol: usize) -> $MatrixView<'_, T, Const, Const, S::RStride, S::CStride> {