diff options
Diffstat (limited to 'pretyping/detyping.ml')
-rw-r--r-- | pretyping/detyping.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pretyping/detyping.ml b/pretyping/detyping.ml index 81bb41ef..73dc5d46 100644 --- a/pretyping/detyping.ml +++ b/pretyping/detyping.ml @@ -6,7 +6,7 @@ (* * GNU Lesser General Public License Version 2.1 *) (************************************************************************) -(* $Id: detyping.ml 11073 2008-06-08 20:24:51Z herbelin $ *) +(* $Id: detyping.ml 11309 2008-08-06 10:30:35Z herbelin $ *) open Pp open Util @@ -49,14 +49,14 @@ let encode_bool r = let (_,lc as x) = encode_inductive r in if not (has_two_constructors lc) then user_err_loc (loc_of_reference r,"encode_if", - str "This type has not exactly two constructors"); + str "This type has not exactly two constructors."); x let encode_tuple r = let (_,lc as x) = encode_inductive r in if not (isomorphic_to_tuple lc) then user_err_loc (loc_of_reference r,"encode_tuple", - str "This type cannot be seen as a tuple type"); + str "This type cannot be seen as a tuple type."); x module PrintingCasesMake = |