summaryrefslogtreecommitdiff
path: root/src/types/matrix.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/matrix.rs')
-rw-r--r--src/types/matrix.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/types/matrix.rs b/src/types/matrix.rs
index eb0801a..2973ce1 100644
--- a/src/types/matrix.rs
+++ b/src/types/matrix.rs
@@ -1,7 +1,9 @@
use std::{fmt::Display, ops::Add, str::FromStr};
use super::matrix_err::{MatrixSetValueError, ParseMatrixError};
-/// Matrix
+/// A Matrix struct
+///
+///
#[derive(Debug, PartialEq, Eq)]
pub struct Matrix {
pub nrows: usize,