diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-03 16:30:03 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-03 16:30:03 -0800 |
commit | 8230d7a503d12b205f668b29dad76bd6a04dcdba (patch) | |
tree | c2db7b683b431b5058bc1b80c35df74b5cf85e81 | |
parent | e39f2236ea3f1b2b50bbed65ec33ad4f56f409cb (diff) | |
download | txr-8230d7a503d12b205f668b29dad76bd6a04dcdba.tar.gz txr-8230d7a503d12b205f668b29dad76bd6a04dcdba.tar.bz2 txr-8230d7a503d12b205f668b29dad76bd6a04dcdba.zip |
Fix misleading wording (separation versus termination).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | txr.1 | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. @@ -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. |