Skip to content

Commit

Permalink
don't require newline at end
Browse files Browse the repository at this point in the history
  • Loading branch information
brow committed Feb 12, 2020
1 parent bece6f6 commit 7043c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Serialize.elm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ shoppingListItem =
|= string
|. P.token ", "
|= string
|. P.chompIf (\c -> c == '\n')
|. P.chompWhile (\c -> c == '\n')


shoppingListSources : Parser (List ShoppingList.Source)
Expand Down

0 comments on commit 7043c54

Please sign in to comment.