Merge pull request #50 from Magnus167/update-doc

Update documentation for HTML formatting
This commit is contained in:
Palash Tyagi 2025-07-04 00:59:51 +01:00 committed by GitHub
commit e7d4e2221c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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()
}