From f4b37fde93a9fd807c31b7ea6187549649b087a2 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 8 Jun 2022 10:18:44 +0300 Subject: [PATCH] docs(lalgebra_vector) correct grammar --- subjects/lalgebra_vector/README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/subjects/lalgebra_vector/README.md b/subjects/lalgebra_vector/README.md index c444bfb7..7c3bfa48 100644 --- a/subjects/lalgebra_vector/README.md +++ b/subjects/lalgebra_vector/README.md @@ -2,13 +2,11 @@ ### Instructions -A vector in linear algebra is defined as "anything that can be added and that can be multiplied by a scalar" +A vector in linear algebra is defined as "anything that can be added, and that can be multiplied by a scalar". -Define the associated function `dot` that calculates the dot product between two vectors +Define the associated function `dot`, that calculates the dot product between two vectors. If the vectors are of different lengths, return `None`. -The dot product between two vectors of different length it's not defined - -Note: `Vector` must implement Debug, Clone, Eq, PartialEq. +Note: `Vector` must implement `Debug`, `Clone`, `Eq` and `PartialEq`. #### Important