Fix typos/thinks - csvtofsv - Convert CSV to FSV (`fs' (0x1c) as FS and `rs' (0x1e) as RS)
 (HTM) hg clone https://bitbucket.org/iamleot/csvtofsv
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) changeset 05103f3e56c3ea12586c2c37c129fdef1144eb71
 (DIR) parent 1c30d2a5feb41dd1042ba20f7f2bf22df3e83448
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Wed, 26 Jun 2019 13:04:08 
       
       Fix typos/thinks
       
       All from Rocky Hotas, thanks!
       
       Diffstat:
        README |  6 +++---
        1 files changed, 3 insertions(+), 3 deletions(-)
       ---
       diff -r 1c30d2a5feb4 -r 05103f3e56c3 README
       --- a/README    Wed Jun 26 13:03:19 2019 +0200
       +++ b/README    Wed Jun 26 13:04:08 2019 +0200
       @@ -1,14 +1,14 @@
       -csvtofsv reads a CSV from standard input and convert it to a FSV with a
       +csvtofsv reads a CSV from standard input and converts it to a FSV with a
        `fs` ASCII character (034 in octal, 28 in decimal, 0x1c in hexadecimal)
        as field separator and `rs` ASCII character (036 in octal, 30 in
        decimal, 0x1e in hexadecimal) as record separator.
        
        All `\r` are ignored and all quotes are removed from the quoted fields.
        
       -The CSV parsing try to follows as much as possible RFC 4180 [1].
       +The CSV parsing tries to follows as much as possible RFC 4180 [1].
        
        
       -csvtofsv output can be processed via AWK by setting FS and RS as follow:
       +csvtofsv output can be processed via AWK by setting FS and RS as follows:
        
         % awk 'BEGIN { FS = "\034"; RS = "\036" } { ... }'