Run roc format on builtins

Contributes to #5533
This commit is contained in:
Fábio Beirão 2023-06-09 16:07:14 +02:00
parent ec94fc87a5
commit d7f03a680e
No known key found for this signature in database
GPG key ID: 13FD3A2130278AAE

View file

@ -788,7 +788,7 @@ mul : Num a, Num a -> Num a
## ```
min : Num a, Num a -> Num a
min = \a, b ->
if a < b then
if a < b then
a
else
b
@ -802,7 +802,7 @@ min = \a, b ->
## ```
max : Num a, Num a -> Num a
max = \a, b ->
if a > b then
if a > b then
a
else
b