From e73d5db97cdb22cce2ee479469f62af3c4b6264a Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 8 Jul 2016 14:43:57 +0200 Subject: Port to Coq 8.5pl2 Manual merging of branch jhjourdan:coq8.5. No other change un functionality. --- common/Unityping.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common/Unityping.v') diff --git a/common/Unityping.v b/common/Unityping.v index f9c9d72c..28bcfb5c 100644 --- a/common/Unityping.v +++ b/common/Unityping.v @@ -28,9 +28,9 @@ Local Open Scope error_monad_scope. Module Type TYPE_ALGEBRA. -Variable t: Type. -Variable eq: forall (x y: t), {x=y} + {x<>y}. -Variable default: t. +Parameter t: Type. +Parameter eq: forall (x y: t), {x=y} + {x<>y}. +Parameter default: t. End TYPE_ALGEBRA. -- cgit