From 8453705bc421e0869e8a1e4cf725a80612c851c2 Mon Sep 17 00:00:00 2001 From: redxef Date: Wed, 18 Dec 2024 00:17:35 +0100 Subject: [PATCH] docs: fix cond example. --- lisp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp.md b/lisp.md index 9421afa..a8f9074 100644 --- a/lisp.md +++ b/lisp.md @@ -56,7 +56,7 @@ argument, a list of string describing the types for the generic method. ``` (cond (> 1 2) t - (t) f) + t f) ``` **if**: a conditional. `(if t 1 2)`