summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-07 23:14:17 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-07 23:14:17 -0700
commit3d4eb23d70df8cd6386fc995658fc4ea7c8856fe (patch)
tree5f13ba2abfebf1d729bed9ea049f1eeac1d74743 /txr.1
parent87b90e5ef348d54569785d7aa4143fe3edff55ea (diff)
downloadtxr-3d4eb23d70df8cd6386fc995658fc4ea7c8856fe.tar.gz
txr-3d4eb23d70df8cd6386fc995658fc4ea7c8856fe.tar.bz2
txr-3d4eb23d70df8cd6386fc995658fc4ea7c8856fe.zip
Mistake in apply example.
* txr.1: Example produces (1 2 3 4), not (1 2 3).
Diffstat (limited to 'txr.1')
-rw-r--r--txr.12
1 files changed, 1 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index bffedd3d..4d848f03 100644
--- a/txr.1
+++ b/txr.1
@@ -23021,7 +23021,7 @@ with an improper argument list.
(apply (fun list) '(1 2 3)) -> (1 2 3)
;; this effectively invokes (list 1 2 3 4)
- (apply (fun list) 1 2 '(3 4)) -> (1 2 3)
+ (apply (fun list) 1 2 '(3 4)) -> (1 2 3 4)
;; this effectively invokes (list 1 2 . 3)
(apply (fun list) 1 2 3)) -> (1 2 . 3)