summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
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)