aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/lib/strtonum.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-09-22 19:49:34 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-09-22 19:49:34 +0300
commit06e16db227de0422f33b5f83817df55340f11846 (patch)
tree792cdf5a56ceb3fd8bef2353ca640a7d9920e604 /awklib/eg/lib/strtonum.awk
parenteff1b6b21720518f2ea9dbd862fe3844d899db08 (diff)
downloadegawk-06e16db227de0422f33b5f83817df55340f11846.tar.gz
egawk-06e16db227de0422f33b5f83817df55340f11846.tar.bz2
egawk-06e16db227de0422f33b5f83817df55340f11846.zip
More doc fixes.
Diffstat (limited to 'awklib/eg/lib/strtonum.awk')
-rw-r--r--awklib/eg/lib/strtonum.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/awklib/eg/lib/strtonum.awk b/awklib/eg/lib/strtonum.awk
index f82c89c5..cd56a449 100644
--- a/awklib/eg/lib/strtonum.awk
+++ b/awklib/eg/lib/strtonum.awk
@@ -51,7 +51,7 @@ function mystrtonum(str, ret, n, i, k, c)
# a[5] = "123.45"
# a[6] = "1.e3"
# a[7] = "1.32"
-# a[7] = "1.32E2"
+# a[8] = "1.32E2"
#
# for (i = 1; i in a; i++)
# print a[i], strtonum(a[i]), mystrtonum(a[i])