aboutsummaryrefslogtreecommitdiffhomepage
path: root/ltac
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-04-26 05:53:40 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-04-27 21:55:49 +0200
commite0fd6e50800bc5aec4eafddd315941d6f7bc6efc (patch)
treeb5897285efc7ee315cbff859294413ecca2c5522 /ltac
parent46f876a9404844487476415af2e6f6d938558d15 (diff)
Fixing space in an error message.
Diffstat (limited to 'ltac')
-rw-r--r--ltac/tacinterp.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ltac/tacinterp.ml b/ltac/tacinterp.ml
index b742bb328..0c9d7ff80 100644
--- a/ltac/tacinterp.ml
+++ b/ltac/tacinterp.ml
@@ -151,7 +151,7 @@ module Value = struct
let pr_v = Pptactic.pr_value Pptactic.ltop v in
let Val.Dyn (tag, _) = v in
let tag = Val.pr tag in
- errorlabstrm "" (str "Type error: value " ++ pr_v ++ str "is a " ++ tag
+ errorlabstrm "" (str "Type error: value " ++ pr_v ++ str " is a " ++ tag
++ str " while type " ++ Genarg.pr_argument_type (unquote (rawwit wit)) ++ str " was expected.")
let prj : type a. a Val.tag -> Val.t -> a option = fun t v ->