Browse Source

fix(matrix_op): fix package name mismatch

pull/1643/head
Michele Sessa 1 year ago committed by Michele
parent
commit
6d2677e0f0
  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
```rust
use matrix::*;
use matrix_ops::*;
fn main() {
let matrix = Matrix(vec![vec![8, 1], vec![9, 1]]);

Loading…
Cancel
Save