diff --git a/src/matrix/mat.rs b/src/matrix/mat.rs index 180650a..18eb804 100644 --- a/src/matrix/mat.rs +++ b/src/matrix/mat.rs @@ -2,7 +2,7 @@ use std::ops::{Add, BitAnd, BitOr, BitXor, Div, Index, IndexMut, Mul, Not, Sub}; -/// A column‑major 2D matrix of `T` +/// A column‑major 2D matrix of `T`. Index as `Array(row, column)`. #[derive(Debug, Clone, PartialEq, Eq)] pub struct Matrix { rows: usize,