refactor: remove unneeded bound on allChords, already bound via <
This commit is contained in:
parent
6bdd553610
commit
9cf2fd5960
1 changed files with 1 additions and 1 deletions
2
Proj2.hs
2
Proj2.hs
|
|
@ -229,7 +229,7 @@ allChords =
|
||||||
p2 <- allPitches,
|
p2 <- allPitches,
|
||||||
p3 <- allPitches,
|
p3 <- allPitches,
|
||||||
let chord = [p1, p2, p3],
|
let chord = [p1, p2, p3],
|
||||||
length (nub chord) == 3,
|
length chord == 3,
|
||||||
p1 < p2,
|
p1 < p2,
|
||||||
p2 < p3
|
p2 < p3
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue