From cb5fdb999261a4c12119e2369c09c7059853e75f Mon Sep 17 00:00:00 2001 From: miguel Date: Fri, 5 Jul 2024 13:23:35 +0100 Subject: [PATCH] docs(matrix_ops): remove imports form example --- subjects/matrix_ops/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/subjects/matrix_ops/README.md b/subjects/matrix_ops/README.md index 4d0491436..dd1e6969c 100644 --- a/subjects/matrix_ops/README.md +++ b/subjects/matrix_ops/README.md @@ -11,9 +11,6 @@ You will be reusing your `Matrix` and `Scalar` structures defined in the [matrix ### Expected Function ```rust -use crate::{Matrix, Scalar}; -use std::ops::{ Add, Sub }; - impl Add for Matrix { } @@ -28,6 +25,7 @@ impl Sub for Matrix { Here is a program to test your function ```rust +// Importing Matrix by defining it as a dependency in Cargo.toml use matrix_ops::*; fn main() {