Skip to content

Commit

Permalink
Merge pull request #29 from Madjosz/patch-1
Browse files Browse the repository at this point in the history
Fix L07intro2.lean conclusion
  • Loading branch information
joneugster authored Oct 17, 2023
2 parents 75bb4e5 + ef2c861 commit 4631fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Game/Levels/Implication/L07intro2.lean
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Statement (x : ℕ) : x + 1 = y + 1 → x = y := by
Conclusion "Here's a completely backwards proof:
```
intro h
repeat rw [succ_eq_add_one]
apply succ_inj
repeat rw [succ_eq_add_one]
exact h
```
"

0 comments on commit 4631fa2

Please sign in to comment.