aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/lib/strtonum.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-09-27 22:33:01 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-09-27 22:33:01 +0300
commit9701514d4ad1152da564ebf6690c514becd4339a (patch)
tree69cf8c9a9991cb4f9fed6fbc2415f0605c52578e /awklib/eg/lib/strtonum.awk
parent6b1b9c16a1b55804df36457de0650414ab3f017d (diff)
parente71e74ac9af232d58e6c672e37ddf7e8737d68b1 (diff)
downloadegawk-9701514d4ad1152da564ebf6690c514becd4339a.tar.gz
egawk-9701514d4ad1152da564ebf6690c514becd4339a.tar.bz2
egawk-9701514d4ad1152da564ebf6690c514becd4339a.zip
Merge branch 'master' into comment
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])