Skip to content

Commit

Permalink
fix(rust-roman_numbers): remove conflicting traits from expected data…
Browse files Browse the repository at this point in the history
… structure
  • Loading branch information
heshamalmosawi authored Jan 1, 2025
1 parent 26623fc commit 35a19c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subjects/roman_numbers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub enum RomanDigit {
M,
}

#[derive(Debug, Clone, Debug, PartialEq, Eq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct RomanNumber(pub Vec<RomanDigit>);

impl From<u32> for RomanDigit {
Expand Down

0 comments on commit 35a19c5

Please sign in to comment.