chore: remove workaround
This commit is contained in:
parent
3ac752b413
commit
f7fcff56b8
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ theorem modLt (x : Nat) {y : Nat} : y > 0 → x % y < y := by
|
|||
| Or.inr h₁ =>
|
||||
have hgt : y > x from gtOfNotLe h₁
|
||||
have heq : x % y = x from modEqOfLt hgt
|
||||
rw [← heq] at hgt; -- TODO: remove `;`
|
||||
rw [← heq] at hgt
|
||||
exact hgt
|
||||
|
||||
theorem modLe (x y : Nat) : x % y ≤ x := by
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue