Compare commits

..

No commits in common. "e7d4e2221c19ad607a7c8632b2cf64657e95e83f" and "36588e38f6c3e210506ec1b85294d640c550c9e7" have entirely different histories.

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