diff options
Diffstat (limited to 'theories/Reals')
| -rw-r--r-- | theories/Reals/Rminmax.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Reals/Rminmax.v b/theories/Reals/Rminmax.v index 70bc00c9f5..e78e895423 100644 --- a/theories/Reals/Rminmax.v +++ b/theories/Reals/Rminmax.v @@ -59,7 +59,7 @@ Lemma Rmax_monotone: forall f, Proof. intros; apply max_monotone; auto. congruence. Qed. Lemma Rmin_case_strong : forall n m (P:R -> Type), - (m<=n -> P m) -> (n<=m -> P n) -> P (Rmin n m). + (n<=m -> P n) -> (m<=n -> P m) -> P (Rmin n m). Proof. intros; apply min_case_strong; auto. congruence. Defined. Lemma Rmin_case : forall n m (P:R -> Type), |
