chore: fix Int.div docstring examples

This commit is contained in:
Adrien Champion 2023-07-10 15:17:01 +02:00 committed by Leonardo de Moura
parent 60b8fdd8d6
commit d8a548fe51

View file

@ -269,8 +269,8 @@ def natAbs (m : @& Int) : Nat :=
#eval (12 : Int) / (7 : Int) -- 1
#eval (12 : Int) / (-7 : Int) -- -1
#eval (-12 : Int) / (7 : Int) -- -2
#eval (-12 : Int) / (-7 : Int) -- 2
#eval (-12 : Int) / (7 : Int) -- -1
#eval (-12 : Int) / (-7 : Int) -- 1
```
Implemented by efficient native code. -/