summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2025-01-23 00:01:29 +0200
committerZhongheng Liu <z.liu@outlook.com.gr>2025-01-23 00:01:29 +0200
commitbaf4264ea10d50572feb1a41817015cb77b8aad5 (patch)
tree85dc9e0b3e6fb3dc53b89a5e24e185158ed3fe07 /src
parent3e6641400974051e655914cd80e8328f0fe7979f (diff)
downloadmatrix-rs-baf4264ea10d50572feb1a41817015cb77b8aad5.tar.gz
matrix-rs-baf4264ea10d50572feb1a41817015cb77b8aad5.tar.bz2
matrix-rs-baf4264ea10d50572feb1a41817015cb77b8aad5.zip
chore(meta): update name and metadata
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
-rw-r--r--src/types/matrix.rs4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index afe3b75..17d816e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-mod types;
+pub mod types;
#[cfg(test)]
mod tests;
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,