Compare commits

..

No commits in common. "d9bdf8ee965dbcd624856250c3285bf0ac1ac2e2" and "a61ff8a4e1240c9e87381fc1813e9ea55b230a72" 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()
}