From 05320147b18c9b393c67a88f64a6095811f78c42 Mon Sep 17 00:00:00 2001 From: Rokonio <61879190+rokonio@users.noreply.github.com> Date: Wed, 29 Dec 2021 18:46:01 +0100 Subject: [PATCH] Fix a typo in a comment --- src/base/matrix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/matrix.rs b/src/base/matrix.rs index 5df2f78e..84376cea 100644 --- a/src/base/matrix.rs +++ b/src/base/matrix.rs @@ -192,7 +192,7 @@ pub struct Matrix { // Note that it would probably make sense to just have // the type `Matrix`, and have `T, R, C` be associated-types // of the `RawStorage` trait. However, because we don't have - // specialization, this is not bossible because these `T, R, C` + // specialization, this is not possible because these `T, R, C` // allows us to desambiguate a lot of configurations. _phantoms: PhantomData<(T, R, C)>, }