diff options
Diffstat (limited to 'theories/Arith')
| -rw-r--r-- | theories/Arith/MinMax.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Arith/MinMax.v b/theories/Arith/MinMax.v index 784e10455e..caf860af86 100644 --- a/theories/Arith/MinMax.v +++ b/theories/Arith/MinMax.v @@ -68,7 +68,7 @@ Lemma max_monotone: forall f, Proof. intros; apply max_monotone; auto. congruence. Qed. Lemma min_case_strong : forall n m (P:nat -> 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 min_case_strong; auto. congruence. Defined. Lemma min_case : forall n m (P:nat -> Type), |
