Browse Source

docs(matrix_ops): fix import typo

pull/1216/head
davhojt 2 years ago committed by Dav Hojt
parent
commit
4e9d32395c
  1. 2
      subjects/matrix_ops/README.md

2
subjects/matrix_ops/README.md

@ -28,7 +28,7 @@ impl Sub for Matrix {
Here is a program to test your function Here is a program to test your function
```rust ```rust
use matrix_ops::*; use matrix::*;
fn main() { fn main() {
let matrix = Matrix(vec![vec![8, 1], vec![9, 1]]); let matrix = Matrix(vec![vec![8, 1], vec![9, 1]]);

Loading…
Cancel
Save