From 2f50e3c413619f2cb10273e8fbcb056ff8fa32d0 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 22 May 2022 15:00:04 +0300 Subject: [PATCH] docs(matrix_transposition): improves grammar --- subjects/matrix_transposition/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/matrix_transposition/README.md b/subjects/matrix_transposition/README.md index 0be750d0..d98cd00c 100644 --- a/subjects/matrix_transposition/README.md +++ b/subjects/matrix_transposition/README.md @@ -20,7 +20,7 @@ The transposition of a matrix, switches the columns to rows, and the rows to col `Matrix` must implement `Debug`, `PartialEq` and `Eq`. You can use `derive`. -> Remember that you are defining a library, so you must make the elements that can be called from an external crate public. +> Remember that you are defining a library, so any element that can be called from an external crate must be made public. ### Usage