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-15 06:18:01 -0800
commit79ca19546e12ecb37372ea99a6f2229cbe46638e (patch)
treeef3c67514c47cd744befd5da6d263621d1f21ced
parent7a8aaee46a252c9d74c03052f45256bccff13218 (diff)
downloadtxr-79ca19546e12ecb37372ea99a6f2229cbe46638e.tar.gz
txr-79ca19546e12ecb37372ea99a6f2229cbe46638e.tar.bz2
txr-79ca19546e12ecb37372ea99a6f2229cbe46638e.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"