refactor: remove unneeded bound on allChords, already bound via <

This commit is contained in:
wi11-holdsworth 2025-10-07 19:35:06 +11:00
parent 6bdd553610
commit 9cf2fd5960

View file

@ -229,7 +229,7 @@ allChords =
p2 <- allPitches,
p3 <- allPitches,
let chord = [p1, p2, p3],
length (nub chord) == 3,
length chord == 3,
p1 < p2,
p2 < p3
]