From 8c900df0f23295dd353282607f2ecd3b4c79b6bd Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 13 Jun 2022 00:33:17 +0300 Subject: [PATCH] docs(matrix_mult) correct grammar --- subjects/matrix_mult/README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/subjects/matrix_mult/README.md b/subjects/matrix_mult/README.md index 5305762b..e4b4b0c7 100644 --- a/subjects/matrix_mult/README.md +++ b/subjects/matrix_mult/README.md @@ -4,15 +4,12 @@ Implement the methods: -- `number_of_cols` which returns the number of columns of the matrix. +- `number_of_cols`: which returns the number of columns in the matrix. +- `number_of_rows`: which returns the number of rows in the matrix. +- `row`: which returns the `n`th row in the matrix. +- `col`: which returns the `n`th column in the matrix. -- `number_of_rows` which returns the number of rows of the matrix. - -- `row(n)` which returns the `n`th row in the matrix. - -- `col(n)` which returns the `n`th column in the matrix. - -Define the matrix multiplication by implementing the std::ops::Mul for the type matrix +Define the matrix multiplication by implementing the `std::ops::Mul` for the type matrix ### Expected Functions