From 4e9d32395cf9959eec05230d37373ef3b34a4a39 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 13 Jun 2022 14:09:24 +0300 Subject: [PATCH] docs(matrix_ops): fix import typo --- 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 65992ef86..4c556d053 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_ops::*; +use matrix::*; fn main() { let matrix = Matrix(vec![vec![8, 1], vec![9, 1]]);