From 0eaaa00196f091f1fc0d290907a6215366d6716e Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Wed, 14 Sep 2022 15:41:40 +0100 Subject: [PATCH] docs(matrix_ops): remove typo --- subjects/matrix_ops/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/matrix_ops/README.md b/subjects/matrix_ops/README.md index 4c556d05..18561ead 100644 --- a/subjects/matrix_ops/README.md +++ b/subjects/matrix_ops/README.md @@ -4,7 +4,7 @@ In this exercise, you will define some basic matrix operations, Implement traits for `Add` and `Sub` -Remember that two matrices can only be added or subtracted if they have they have the same dimensions. Therefore, you must handle the possibility of failure by returning an `Option`. +Remember that two matrices can only be added or subtracted if they have the same dimensions. Therefore, you must handle the possibility of failure by returning an `Option`. You will be reusing your `Matrix` and `Scalar` structures defined in the [matrix](../matrix/README.md) and [lalgebra_scalar](../lalgebra_scalar/README.md) exercises.