docs(matrix_transposition): improves grammar

This commit is contained in:
davhojt 2022-05-22 15:00:04 +03:00 committed by Dav Hojt
parent d8e7ca7bc5
commit 2f50e3c413
1 changed files with 1 additions and 1 deletions

View File

@ -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