aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/prog/wc.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-12-15 23:33:49 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-12-15 23:33:49 +0200
commitedfb721ac785219e9b881d8ac3a841cef8270a79 (patch)
tree896975ebdb9331b17157ea6e30f646d3e3c75df6 /awklib/eg/prog/wc.awk
parent9d3481aa7472d05543df77e0b2da9077e5ab3795 (diff)
downloadegawk-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.awk4
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")