Skip to content

Commit

Permalink
Remove semicolon on eq fn so it returns a bool
Browse files Browse the repository at this point in the history
  • Loading branch information
BradenEverson authored Apr 4, 2024
1 parent 2f71239 commit a3e2c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/graph/operation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl PartialEq for Operation {
},
) => node == node2 && dim == dim2,
_ => false,
};
}
}
}

Expand Down

0 comments on commit a3e2c7c

Please sign in to comment.