This commit is contained in:
nora 2022-09-13 16:30:25 +02:00
parent 505a8f80d5
commit 166b495586
5 changed files with 19 additions and 15 deletions

View file

@ -69,7 +69,7 @@ impl PartialEq for FmtPart {
fn eq(&self, other: &Self) -> bool {
match (self, other) {
(Self::Literal(_, a), Self::Literal(_, b)) => a == b,
(Self::Spec(_ ,a, _), Self::Spec(_, b, _)) => a == b,
(Self::Spec(_, a, _), Self::Spec(_, b, _)) => a == b,
_ => false,
}
}