From b13fe3dcd270eb216832208661d93bd072675b19 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Thu, 27 Apr 2023 00:31:50 -0700 Subject: [PATCH] Correct docs for matrix regarding scalar types --- src/matrix.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/matrix.rs b/src/matrix.rs index 0835623..d8d5ead 100644 --- a/src/matrix.rs +++ b/src/matrix.rs @@ -11,8 +11,7 @@ use std::ops::{Add, AddAssign, Deref, DerefMut, Index, IndexMut, Mul, MulAssign, /// A 2D array of values which can be operated upon. /// -/// Matrices have a fixed size known at compile time, and must be made up of types that implement -/// the [Scalar] trait. +/// Matrices have a fixed size known at compile time #[derive(Debug, Copy, Clone, PartialEq)] pub struct Matrix where