Fix a typo

Signed-off-by: Jeremie Dimino <jeremie@dimino.org>
This commit is contained in:
Jeremie Dimino 2018-07-16 12:53:13 +01:00 committed by Jérémie Dimino
parent b2892437e6
commit 9f7fa5ec68
2 changed files with 3 additions and 3 deletions

View File

@ -300,4 +300,4 @@ and template_variable = parse
}
| '}' | eof
{ error lexbuf "%{...} forms cannot be empty" }
| _ { error lexbuf "This character not allowed inside %{...} forms" }
| _ { error lexbuf "This character is not allowed inside %{...} forms" }

View File

@ -27,10 +27,10 @@ The targets should only be interpreted as a single path when quoted
$ dune build @quoted --root filename-space
File "dune", line 4, characters 17-18:
Error: This character not allowed inside %{...} forms
Error: This character is not allowed inside %{...} forms
[1]
$ dune build @unquoted --root filename-space
File "dune", line 4, characters 17-18:
Error: This character not allowed inside %{...} forms
Error: This character is not allowed inside %{...} forms
[1]