diff --git a/src/base/storage.rs b/src/base/storage.rs index 09bbd553a..f1fb5f4d5 100644 --- a/src/base/storage.rs +++ b/src/base/storage.rs @@ -57,7 +57,7 @@ pub unsafe trait RawStorage: Sized { /// element of any dimension. Must be equal to `Self::dimension()` if it is not `None`. fn shape(&self) -> (R, C); - /// The spacing between consecutive row elements and consecutive column elements. + /// The spacing between consecutive elements across rows and across columns. /// /// For example this returns `(1, 5)` for a column-major matrix with 5 columns. fn strides(&self) -> (Self::RStride, Self::CStride);