diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-15 23:33:49 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-15 23:33:49 +0200 |
commit | edfb721ac785219e9b881d8ac3a841cef8270a79 (patch) | |
tree | 896975ebdb9331b17157ea6e30f646d3e3c75df6 /awklib/eg/prog/wc.awk | |
parent | 9d3481aa7472d05543df77e0b2da9077e5ab3795 (diff) | |
download | egawk-edfb721ac785219e9b881d8ac3a841cef8270a79.tar.gz egawk-edfb721ac785219e9b881d8ac3a841cef8270a79.tar.bz2 egawk-edfb721ac785219e9b881d8ac3a841cef8270a79.zip |
Doc fixes.
Diffstat (limited to 'awklib/eg/prog/wc.awk')
-rw-r--r-- | awklib/eg/prog/wc.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awklib/eg/prog/wc.awk b/awklib/eg/prog/wc.awk index d51b9ff2..95940ae4 100644 --- a/awklib/eg/prog/wc.awk +++ b/awklib/eg/prog/wc.awk @@ -10,10 +10,10 @@ # # Default is to count lines, words, characters # -# Requires getopt and file transition library functions +# Requires getopt() and file transition library functions BEGIN { - # let getopt print a message about + # let getopt() print a message about # invalid options. we ignore them while ((c = getopt(ARGC, ARGV, "lwc")) != -1) { if (c == "l") |