Fix small typo on Num.div

This commit is contained in:
Fábio Beirão 2023-05-26 00:06:27 +02:00
parent 8ecbd8c071
commit 364208f37c
No known key found for this signature in database
GPG key ID: 13FD3A2130278AAE

View file

@ -838,7 +838,7 @@ logChecked = \x ->
## `a / b` is shorthand for `Num.div a b`.
##
## [Division by zero is undefined in mathematics](https://en.wikipedia.org/wiki/Division_by_zero).
## As such, you should make sure never to pass zero as the denomaintor to this function!
## As such, you should make sure never to pass zero as the denominator to this function!
## Calling [div] on a [Dec] denominator of zero will cause a panic.
##
## Calling [div] on [F32] and [F64] values follows these rules: