summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--txr.14
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index daea3034..30112d78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2013-05-20 Kaz Kylheku <kaz@kylheku.com>
+ * txr.1: Corrected wrong function name in documentation
+ for split-str-set.
+
+2013-05-20 Kaz Kylheku <kaz@kylheku.com>
+
* txr.1: Misleading documentation updated for split-str, which
takes a regex, not just a fixed string separator. Clarified
the corner case behaviors too.
diff --git a/txr.1 b/txr.1
index 433c74c2..799fb0d1 100644
--- a/txr.1
+++ b/txr.1
@@ -7540,12 +7540,12 @@ This operation is nondestructive: <string> is not modified in any way.
.TP
Syntax:
- (split-str <string> <set>)
+ (split-str-set <string> <set>)
.TP
Description:
-The split-str function breaks the <string> into pieces, returing a list
+The split-str-set function breaks the <string> into pieces, returing a list
thereof. The <sep> argument must be a string. It specifies a set of
characters. All occurences of any of these characters within <string> are
identified, and are removed from <string>. The string is broken into pieces