Skip to content

Commit

Permalink
Changing error messages to not be capitlised
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Apr 12, 2024
1 parent 9c79135 commit bfab8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timere-parse/parser_components.ml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ let string_of_pos pos =
* x >>= aux *)

let invalid_syntax ~text ~pos =
fail (Printf.sprintf "Invalid syntax: %s, pos: %s" text (string_of_pos pos))
fail (Printf.sprintf "invalid syntax: %s, pos: %s" text (string_of_pos pos))

let extraneous_text_check ~end_markers =
spaces
Expand Down

0 comments on commit bfab8c7

Please sign in to comment.