Update Definitions.lean

This commit is contained in:
Pietro Monticone
2024-01-31 12:26:17 +01:00
parent bc38caf177
commit c8f7f2caaa

View File

@@ -6,7 +6,7 @@ import GameServer.Commands
-- * `(0 : )`, an element called zero. -- * `(0 : )`, an element called zero.
-- * `(succ : )`, the successor function , i.e. one is `succ 0` and two is `succ (succ 0)`. -- * `(succ : )`, the successor function , i.e. one is `succ 0` and two is `succ (succ 0)`.
-- * `induction` (or `rcases`), tactics to treat the cases $n = 0$ and `n = m + 1` seperately. -- * `induction` (or `rcases`), tactics to treat the cases $n = 0$ and `n = m + 1` separately.
-- ## Game Modifications -- ## Game Modifications