Skip to content

Commit

Permalink
fix(clippy): remove unnecessary keyword in format
Browse files Browse the repository at this point in the history
  • Loading branch information
jturner314 committed Jul 30, 2022
1 parent a6c8bd2 commit 1d0212c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrayformat.rs
Expand Up @@ -217,7 +217,7 @@ where
", shape={:?}, strides={:?}, layout={:?}",
self.shape(),
self.strides(),
layout = self.view().layout()
self.view().layout(),
)?;
match D::NDIM {
Some(ndim) => write!(f, ", const ndim={}", ndim)?,
Expand Down

0 comments on commit 1d0212c

Please sign in to comment.