diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-04 08:49:02 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-04 08:49:02 +0300 |
commit | a0d7edfff1b489e50ae8751429ebf925948b746f (patch) | |
tree | 48efbe924bef5eaedf251ed269f64a42805d051c /awklib/eg | |
parent | f84a4ffb830e5f9ce138cb74fae99ad930805723 (diff) | |
download | egawk-a0d7edfff1b489e50ae8751429ebf925948b746f.tar.gz egawk-a0d7edfff1b489e50ae8751429ebf925948b746f.tar.bz2 egawk-a0d7edfff1b489e50ae8751429ebf925948b746f.zip |
Documentation fixes and improvements.
Diffstat (limited to 'awklib/eg')
-rw-r--r-- | awklib/eg/prog/uniq.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awklib/eg/prog/uniq.awk b/awklib/eg/prog/uniq.awk index effc8f6c..2a2cf63e 100644 --- a/awklib/eg/prog/uniq.awk +++ b/awklib/eg/prog/uniq.awk @@ -30,7 +30,7 @@ BEGIN { else if (c == "c") do_count++ else if (index("0123456789", c) != 0) { - # getopt requires args to options + # getopt() requires args to options # this messes us up for things like -5 if (Optarg ~ /^[[:digit:]]+$/) fcount = (c Optarg) + 0 |