summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-03-30 09:30:12 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-03-30 09:30:12 -0700
commit4251bd08462cd9179358d711f823405ed68a0b64 (patch)
tree8c91255363edf16335fe3bfdec2ae3ddb8ebd404
parent0b8db9cc49c14041b43f0ed16c2fd7bdaf441d89 (diff)
downloadtxr-4251bd08462cd9179358d711f823405ed68a0b64.tar.gz
txr-4251bd08462cd9179358d711f823405ed68a0b64.tar.bz2
txr-4251bd08462cd9179358d711f823405ed68a0b64.zip
doc: mistake in ldiff example.
* txr.1: A let in the example should be let*.
-rw-r--r--txr.12
1 files changed, 1 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index 0d45f6f8..2ce5f4d2 100644
--- a/txr.1
+++ b/txr.1
@@ -18740,7 +18740,7 @@ See the relevant examples below.
(ldiff '(1 2 3) '(2 3)) -> either (1) or (1 2 3)
;; b is the (1 2) suffix of a, so the ldiff is (1)
- (let ((a '(1 2 3)) (b (cdr a)))
+ (let* ((a '(1 2 3)) (b (cdr a)))
(ldiff a b))
-> (1)