summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--txr.16
1 files changed, 3 insertions, 3 deletions
diff --git a/txr.1 b/txr.1
index 19f8f2f4..6df2f322 100644
--- a/txr.1
+++ b/txr.1
@@ -21971,10 +21971,10 @@ of one element.
(split "abc" 0) -> ("" "abc")
(split "abc" 3) -> ("abc" "")
(split "abc" 1) -> ("a" "bc")
- (split "abc" 0 1 2 3) -> ("" "a" "b" "c" "")
- (split "abc" 1 2) -> ("a" "b" "c")
+ (split "abc" '(0 1 2 3)) -> ("" "a" "b" "c" "")
+ (split "abc" '(1 2)) -> ("a" "b" "c")
- (split "abc" -1 1 2 15) -> ("a" "b" "c")
+ (split "abc" '(-1 1 2 15)) -> ("a" "b" "c")
;; triple split at makes two additional empty pieces
(split "abc" '(1 1 1)) -> ("a" "" "" "bc")