Skip to content

Commit 5feca5f

Browse files
committed
fix(clippy): remove unnecessary keyword in format
1 parent d2b203e commit 5feca5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arrayformat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ where
217217
", shape={:?}, strides={:?}, layout={:?}",
218218
self.shape(),
219219
self.strides(),
220-
layout = self.view().layout()
220+
self.view().layout(),
221221
)?;
222222
match D::NDIM {
223223
Some(ndim) => write!(f, ", const ndim={}", ndim)?,

0 commit comments

Comments
 (0)