elm-cookbook
elm-cookbook copied to clipboard
`Tuple comparable comparable` should be `( a, b )` and `( a, b, c )`
Under "Answer" in "What are comparable types?":
...,
Tuple comparable comparable
and ... are comparable types.
Tuple
isn't an actual type. I suggest changing it to
...,
( comparableA, comparableB )
,( comparableA, comparableB, comparableC )
tuples and ... are comparable types.
Which also makes it clear that both comparable
s can be different.