Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rognierbenoit committed Jun 6, 2022
1 parent 88edaeb commit 0c795f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/desc/div_desc.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Returns the euclidean quotient of two `a` divided by `b`; `a div b` is equivalen
```archetype
match a /% b with
| some(q,r) -> q
| none -> fail("DivByZero")
| none -> fail("DIV_BY_ZERO")
end
```
2 changes: 1 addition & 1 deletion src/components/desc/mod_desc.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Returns the euclidean remainder of `a` divided by `b` (modulus); `a % b` is equi
```archetype
match a /% b with
| some(q,r) -> r
| none -> fail("DivByZero")
| none -> fail("DIV_BY_ZERO")
end
```

0 comments on commit 0c795f2

Please sign in to comment.