From bf9d6ebdedf2b97ef4a69c3cca488d9f9e7d4f37 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 1 Feb 2021 07:18:06 -0800 Subject: doc: mistake in when-match rcons example. * txr.1: The de-sugared (rcons @a @b) example is missing a quote on the object, and so returns nil and not (1 2). --- txr.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txr.1 b/txr.1 index 4a1219ba..05112c5e 100644 --- a/txr.1 +++ b/txr.1 @@ -39981,7 +39981,7 @@ that being a syntactic sugar for (when-match @a..@b '1..2 (list a b)) -> (1 2) ;; above, de-sugared: - (when-match (rcons @a @b) (rcons 1 2) (list a b)) -> (1 2) + (when-match (rcons @a @b) '(rcons 1 2) (list a b)) -> (1 2) .brev -- cgit v1.2.3