docs: fix cond example.

This commit is contained in:
redxef 2024-12-18 00:17:35 +01:00
parent 3bba58d4ac
commit 8453705bc4
Signed by: redxef
GPG key ID: 7DAC3AA211CBD921

View file

@ -56,7 +56,7 @@ argument, a list of string describing the types for the generic method.
``` ```
(cond (cond
(> 1 2) t (> 1 2) t
(t) f) t f)
``` ```
**if**: a conditional. `(if t 1 2)` **if**: a conditional. `(if t 1 2)`