chore: fix Int.div docstring examples
This commit is contained in:
parent
60b8fdd8d6
commit
d8a548fe51
1 changed files with 2 additions and 2 deletions
|
|
@ -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. -/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue