diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-11-15 06:18:01 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-11-18 14:26:19 -0800 |
commit | 4cc02a39b0d83585c926b3e268262f26e4825942 (patch) | |
tree | ef3c67514c47cd744befd5da6d263621d1f21ced | |
parent | 3d2158f0cf7cd00e338cf32b32b56c9ae455f6cc (diff) | |
download | txr-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.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |