From 6d2677e0f0671ce7ed979366686c87d3837a233f Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Fri, 9 Dec 2022 19:33:02 +0000 Subject: [PATCH] fix(matrix_op): fix package name mismatch --- subjects/matrix_ops/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/matrix_ops/README.md b/subjects/matrix_ops/README.md index 18561ead..4d049143 100644 --- a/subjects/matrix_ops/README.md +++ b/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]]);