From 8b158ad1422ca3e180022970cc29f2e706dba6b8 Mon Sep 17 00:00:00 2001 From: Augusto Date: Mon, 28 Dec 2020 00:41:17 +0000 Subject: [PATCH] Add extra instruction --- subjects/lalgebra_vector/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/subjects/lalgebra_vector/README.md b/subjects/lalgebra_vector/README.md index 9c44c4ba..24b3a6b3 100644 --- a/subjects/lalgebra_vector/README.md +++ b/subjects/lalgebra_vector/README.md @@ -10,6 +10,10 @@ The dot product between two vectors of different length it's not defined Note: `Vector` must implement Debug, Clone, Eq, PartialEq. +#### Important + +Note that in the addition of vector of the example the `Rhs` is not `Self` + ### Expected Functions and Structure ```rust