summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-11-15 06:18:01 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-11-18 14:26:19 -0800
commit4cc02a39b0d83585c926b3e268262f26e4825942 (patch)
treeef3c67514c47cd744befd5da6d263621d1f21ced
parent3d2158f0cf7cd00e338cf32b32b56c9ae455f6cc (diff)
downloadtxr-4cc02a39b0d83585c926b3e268262f26e4825942.tar.gz
txr-4cc02a39b0d83585c926b3e268262f26e4825942.tar.bz2
txr-4cc02a39b0d83585c926b3e268262f26e4825942.zip
doc: incorrect partition* example.
* txr.1: Fix incorrect return value. Reported by user vapnik spaknik.
-rw-r--r--txr.12
1 files changed, 1 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index 563f24e0..a5f2aa38 100644
--- a/txr.1
+++ b/txr.1
@@ -30736,7 +30736,7 @@ is returned.
.TP* Examples:
.verb
- (partition* '(1 2 3 4 5) '(0 2 4)) -> ((1) (3) (5))
+ (partition* '(1 2 3 4 5) '(0 2 4)) -> ((2) (4))
(partition* "abcd" '(0 3)) -> "bc"