diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-11-15 06:18:01 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-11-15 06:18:01 -0800 |
commit | 79ca19546e12ecb37372ea99a6f2229cbe46638e (patch) | |
tree | ef3c67514c47cd744befd5da6d263621d1f21ced | |
parent | 7a8aaee46a252c9d74c03052f45256bccff13218 (diff) | |
download | txr-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.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" |