docs: fix cond example for real this time.

This commit is contained in:
redxef 2024-12-18 00:34:11 +01:00
parent 8453705bc4
commit 6d7cd33d04
Signed by: redxef
GPG key ID: 7DAC3AA211CBD921

View file

@ -55,8 +55,8 @@ argument, a list of string describing the types for the generic method.
**cond**: checks conditions and evaluates the corresponding expression.
```
(cond
(> 1 2) t
t f)
((> 1 2) t)
(t f))
```
**if**: a conditional. `(if t 1 2)`