diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-03-30 09:30:12 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-03-30 09:30:12 -0700 |
commit | c40a00fa76111f733dbed26a03b991f1ea50441d (patch) | |
tree | 8c91255363edf16335fe3bfdec2ae3ddb8ebd404 | |
parent | 7e71f873eabce5a092ab3a054c508a2327cd5299 (diff) | |
download | txr-c40a00fa76111f733dbed26a03b991f1ea50441d.tar.gz txr-c40a00fa76111f733dbed26a03b991f1ea50441d.tar.bz2 txr-c40a00fa76111f733dbed26a03b991f1ea50441d.zip |
doc: mistake in ldiff example.
* txr.1: A let in the example should be let*.
-rw-r--r-- | txr.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |