From bc5cc658973175fc6aa5b33e695fa2eea4e1ba16 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Fri, 4 Jul 2025 00:53:15 +0100 Subject: [PATCH] Update documentation for `to_vec` method to improve clarity --- src/matrix/mat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/mat.rs b/src/matrix/mat.rs index 18eb804..11198d4 100644 --- a/src/matrix/mat.rs +++ b/src/matrix/mat.rs @@ -76,7 +76,7 @@ impl Matrix { self.data } - /// Creates a new Vec containing the matrix data (cloned). + /// Creates a new `Vec` containing the matrix data (cloned). pub fn to_vec(&self) -> Vec { self.data.clone() }