Skip to content

Commit

Permalink
docs(matrix_ops): remove imports form example
Browse files Browse the repository at this point in the history
  • Loading branch information
MSilva95 committed Jul 5, 2024
1 parent ec6cfc7 commit cb5fdb9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions subjects/matrix_ops/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

}
Expand All @@ -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() {
Expand Down

0 comments on commit cb5fdb9

Please sign in to comment.