rtfeldman/selectlist

Typo in sample for append

Opened this issue · 0 comments

SelectList.fromLists [ 1, 2 ] 3 [ 4 ]
|> SelectList.append [ 5, 6 ]
== SelectList.fromLists [ 1 ] 2 [ 3, 4, 5, 6 ]

should be

SelectList.fromLists [ 1, 2 ] 3 [ 4 ]
|> SelectList.append [ 5, 6 ]
== SelectList.fromLists [ 1, 2 ] 3 [ 4, 5, 6 ]