aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theories/Structures/GenericMinMax.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Structures/GenericMinMax.v b/theories/Structures/GenericMinMax.v
index 232989fad0..5dec73c623 100644
--- a/theories/Structures/GenericMinMax.v
+++ b/theories/Structures/GenericMinMax.v
@@ -594,7 +594,7 @@ Module UsualMinMaxDecProperties
Proof. exact P.max_dec. Defined.
Lemma min_case_strong : forall n m (P:O.t -> Type),
- (m<=n -> P m) -> (n<=m -> P n) -> P (min n m).
+ (n<=m -> P n) -> (m<=n -> P m) -> P (min n m).
Proof. intros; apply P.min_case_strong; auto. congruence. Defined.
Lemma min_case : forall n m (P:O.t -> Type),