aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Sets/Cpo.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Sets/Cpo.v')
-rw-r--r--theories/Sets/Cpo.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/theories/Sets/Cpo.v b/theories/Sets/Cpo.v
index 058eec3da..5ab6f3824 100644
--- a/theories/Sets/Cpo.v
+++ b/theories/Sets/Cpo.v
@@ -32,9 +32,9 @@ Section Bounds.
Variable U : Type.
Variable D : PO U.
- Let C := Carrier_of U D.
+ Let C := @Carrier_of U D.
- Let R := Rel_of U D.
+ Let R := @Rel_of U D.
Inductive Upper_Bound (B:Ensemble U) (x:U) : Prop :=
Upper_Bound_definition :
@@ -103,6 +103,6 @@ Section Specific_orders.
Record Chain : Type := Definition_of_chain
{PO_of_chain : PO U;
- Chain_cond : Totally_ordered U PO_of_chain (Carrier_of U PO_of_chain)}.
+ Chain_cond : Totally_ordered U PO_of_chain (@Carrier_of _ PO_of_chain)}.
End Specific_orders.