Skip to content

Commit

Permalink
Use Parser.problem instead of Debug.todo (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceddlyburge authored Apr 4, 2024
1 parent 8403b2f commit fc34534
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,34 +22,34 @@ type alias Pizza =

priceParser : Parser Int
priceParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"


vegetarianParser : Parser Bool
vegetarianParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"


wordParser : Parser String
wordParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"


ingredientsParser : Parser (List String)
ingredientsParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"


pizzaParser : Parser Pizza
pizzaParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"


menuParser : Parser (List Pizza)
menuParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"


oneIngredientParser : Parser String
oneIngredientParser =
Debug.todo "Please implement this parser"
Parser.problem "Please implement this parser"

0 comments on commit fc34534

Please sign in to comment.