4 Commits

Author SHA1 Message Date
Palash Tyagi
fdd8842897 Merge 960fd345c2 into e7d4e2221c 2025-07-04 19:27:26 +01:00
e7d4e2221c Merge pull request #50 from Magnus167/update-doc
Update documentation for HTML formatting
2025-07-04 00:59:51 +01:00
c7e39e6f99 Merge branch 'main' into update-doc 2025-07-04 00:57:07 +01:00
Palash Tyagi
bc5cc65897 Update documentation for to_vec method to improve clarity 2025-07-04 00:53:15 +01:00

View File

@@ -76,7 +76,7 @@ impl<T: Clone> Matrix<T> {
self.data
}
/// Creates a new Vec<T> containing the matrix data (cloned).
/// Creates a new `Vec<T>` containing the matrix data (cloned).
pub fn to_vec(&self) -> Vec<T> {
self.data.clone()
}