aboutsummaryrefslogtreecommitdiff
path: root/vernac/comInductive.ml
diff options
context:
space:
mode:
authorEnrico Tassi2018-04-13 09:38:28 +0200
committerEnrico Tassi2018-04-13 09:38:28 +0200
commit43053e7e025e57f00741bcd744c20bc6f2c583af (patch)
tree1864c8ba228559bd8eb6e6b1a0fa11a961c9cd62 /vernac/comInductive.ml
parent0f68627e37357f7ff37dba59abb856c52b411830 (diff)
parent1671fae4a020a66e329b9ea04c7e06aa13c71d1e (diff)
Merge PR #7231: Fixing the 3 cases of a "Stream.Error" ended with two periods.
Diffstat (limited to 'vernac/comInductive.ml')
-rw-r--r--vernac/comInductive.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/comInductive.ml b/vernac/comInductive.ml
index db2f16525b..05c40dbdd7 100644
--- a/vernac/comInductive.ml
+++ b/vernac/comInductive.ml
@@ -261,7 +261,7 @@ let check_param = function
| CLocalAssum (nas, Default _, _) -> List.iter check_named nas
| CLocalAssum (nas, Generalized _, _) -> ()
| CLocalPattern {CAst.loc} ->
- Loc.raise ?loc (Stream.Error "pattern with quote not allowed here.")
+ Loc.raise ?loc (Stream.Error "pattern with quote not allowed here")
let interp_mutual_inductive (paramsl,indl) notations cum poly prv finite =
check_all_names_different indl;