Skip to content

Commit

Permalink
fix typo in implication world
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuzzard committed Mar 17, 2024
1 parent 5010691 commit 61ce832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Game/Levels/Implication/L08ne.lean
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ definition of `≠`. In Lean, `a ≠ b` is *notation* for `a = b → False`.
Here `False` is a generic false proposition, and `→` is Lean's notation
for \"implies\". In logic we learn
that `True → False` is false, but `False → False` is true. Hence
`X → false` is the logical opposite of `X`.
`X → False` is the logical opposite of `X`.
Even though `a ≠ b` does not look like an implication,
you should treat it as an implication. The next two levels will show you how.
Expand Down

0 comments on commit 61ce832

Please sign in to comment.