fix(matrix_op): fix package name mismatch

This commit is contained in:
Michele Sessa 2022-12-09 19:33:02 +00:00 committed by Michele
parent e1fab8e3ea
commit 6d2677e0f0
1 changed files with 1 additions and 1 deletions

View File

@ -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]]);