Skip to content

Commit

Permalink
Read fields in the correct order when parsing expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
evancz committed Dec 7, 2016
1 parent b99ded4 commit c6701ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parse/Expression.hs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ chompFields fields =
f <- chompField
chompFields (f : fields)
, do rightCurly
return fields
return (reverse fields)
]


Expand Down

0 comments on commit c6701ae

Please sign in to comment.