Skip to content

Commit

Permalink
Fixed spacing in documentation in matrix_view.rs
Browse files Browse the repository at this point in the history
Fixed spacing in documentation.
  • Loading branch information
fangs124 committed Apr 23, 2024
1 parent b7a2ae2 commit 48d7b17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/base/matrix_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand All @@ -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<const RVIEW: usize, const CVIEW: usize>($me: $Me, irow: usize, icol: usize)
-> $MatrixView<'_, T, Const<RVIEW>, Const<CVIEW>, S::RStride, S::CStride> {
Expand Down

0 comments on commit 48d7b17

Please sign in to comment.