aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Structures/OrderedType2.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Structures/OrderedType2.v')
-rw-r--r--theories/Structures/OrderedType2.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Structures/OrderedType2.v b/theories/Structures/OrderedType2.v
index 1cddfea3b..766b0faf0 100644
--- a/theories/Structures/OrderedType2.v
+++ b/theories/Structures/OrderedType2.v
@@ -43,7 +43,7 @@ Module Type LeNotation (E:EqLe).
End LeNotation.
Module Type LtLeNotation (E:EqLtLe).
- Include Type LtNotation E <+ LeNotation E.
+ Include LtNotation E <+ LeNotation E.
Notation "x <= y < z" := (x<=y /\ y<z).
Notation "x < y <= z" := (x<y /\ y<=z).
End LtLeNotation.