We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4faffca commit bf14ff7Copy full SHA for bf14ff7
src/impl_2d.rs
@@ -40,7 +40,7 @@ where
40
}
41
42
/// Return the number of rows (length of `Axis(0)`) in the two-dimensional array.
43
- #[deprecated(note="Renamed to .nrows(), please use the new name")]
+ #[deprecated(note = "Renamed to .nrows(), please use the new name")]
44
pub fn rows(&self) -> usize {
45
self.nrows()
46
@@ -71,7 +71,7 @@ where
71
72
73
/// Return the number of columns (length of `Axis(1)`) in the two-dimensional array.
74
- #[deprecated(note="Renamed to .ncols(), please use the new name")]
+ #[deprecated(note = "Renamed to .ncols(), please use the new name")]
75
pub fn cols(&self) -> usize {
76
self.ncols()
77
0 commit comments