Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
MartyO256 committed Aug 9, 2023
1 parent e3254fc commit 0b63c5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/parser/clf_disambiguation.ml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ let () =
Format.dprintf "The LF type-level constant %a is unbound."
Qualified_identifier.pp identifier
| Expected_clf_type_constant ->
Format.dprintf "Expected a LF type-level constant."
Format.dprintf "Expected an LF type-level constant."
| Unbound_type_constant_or_illegal_projection_clf_type identifier ->
Format.dprintf
"Either the LF type-level constant %a is unbound, or a projection \
Expand Down
2 changes: 1 addition & 1 deletion t/code/error/recon-simple.bel.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
File "./t/code/error/recon-simple.bel", line 96, column 11:
96 | [g |- SN N] ->
^^
Error: Expected a LF type-level constant.
Error: Expected an LF type-level constant.
File "./t/code/error/recon-simple.bel", line 25, column 11:
25 |inductive SN : (g : cxt) {M : [g |- tm A[]]} ctype =
^^
Expand Down
2 changes: 1 addition & 1 deletion t/code/error/recon.bel.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
File "./t/code/error/recon.bel", line 174, column 10:
174 | [g |- SN N] ->
^^
Error: Expected a LF type-level constant.
Error: Expected an LF type-level constant.
File "./t/code/error/recon.bel", line 94, column 11:
94 |inductive SN : (g : cxt) {M : [g |- tm A[]]} ctype =
^^
Expand Down

0 comments on commit 0b63c5f

Please sign in to comment.