docs(matrix_ops): remove typo

This commit is contained in:
Michele Sessa 2022-09-14 15:41:40 +01:00 committed by Michele
parent 412d887403
commit 0eaaa00196
1 changed files with 1 additions and 1 deletions

View File

@ -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<T>`.
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<T>`.
You will be reusing your `Matrix` and `Scalar` structures defined in the [matrix](../matrix/README.md) and [lalgebra_scalar](../lalgebra_scalar/README.md) exercises.