summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--txr.12
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 756dbdb6..d40da1a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2009-10-22 Kaz Kylheku <kkylheku@gmail.com>
+ * txr.1: Fix misleading wording (separation versus termination).
+
+2009-10-22 Kaz Kylheku <kkylheku@gmail.com>
+
Version 019
Regexps can be bound to variables.
diff --git a/txr.1 b/txr.1
index 57adbb64..391c5fdf 100644
--- a/txr.1
+++ b/txr.1
@@ -1039,7 +1039,7 @@ long.
In the following example, freeform is used to solve a tokenizing problem. The
Unix password file has fields separated by colons. Some fields may be empty.
-Using freeform, we can join the password file using ":" as a separator.
+Using freeform, we can join the password file using ":" as a terminator.
By restricting freeform to one line, we can obtain each line of the password
file with a terminating ":", allowing for a simple tokenization, because
now the fields are colon-terminated rather than colon-separated.