Browse Source

fix typo in matrix_mult

Typo in expected functions:
right function name is row:
1150-replace-even
Mihkel Gering 2 years ago committed by Dav Hojt
parent
commit
8a76352968
  1. 2
      subjects/matrix_mult/README.md

2
subjects/matrix_mult/README.md

@ -21,7 +21,7 @@ impl Matrix<T> {
pub fn number_of_rows(&self) -> usize {
}
pub fn rows(&self, n: usize) -> Vec<T> {
pub fn row(&self, n: usize) -> Vec<T> {
}
pub fn col(&self, n: usize) -> Vec<T> {

Loading…
Cancel
Save