summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-03 16:30:03 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-03 16:30:03 -0800
commit8230d7a503d12b205f668b29dad76bd6a04dcdba (patch)
treec2db7b683b431b5058bc1b80c35df74b5cf85e81 /txr.1
parente39f2236ea3f1b2b50bbed65ec33ad4f56f409cb (diff)
downloadtxr-8230d7a503d12b205f668b29dad76bd6a04dcdba.tar.gz
txr-8230d7a503d12b205f668b29dad76bd6a04dcdba.tar.bz2
txr-8230d7a503d12b205f668b29dad76bd6a04dcdba.zip
Fix misleading wording (separation versus termination).
Diffstat (limited to 'txr.1')
-rw-r--r--txr.12
1 files changed, 1 insertions, 1 deletions
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.