aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-12-12 07:42:54 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-12-12 07:42:54 +0200
commit0d52289482d468c8566976d77c0c6a6a4e602add (patch)
tree72dec7d7f77b518f99d4e75a3844f009b924886e /doc/gawk.info
parentfa9d1a09cfe9e7386746a2c6523b5503d1b4aff9 (diff)
parent769d7886cceec048dcd4aa67236b5971891418c3 (diff)
downloadegawk-0d52289482d468c8566976d77c0c6a6a4e602add.tar.gz
egawk-0d52289482d468c8566976d77c0c6a6a4e602add.tar.bz2
egawk-0d52289482d468c8566976d77c0c6a6a4e602add.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index bac9b228..8e5e6b29 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -11865,7 +11865,7 @@ undefined. Thus, avoid writing programs that assume that parameters
are evaluated from left to right or from right to left. For example:
i = 5
- j = atan2(i++, i *= 2)
+ j = atan2(++i, i *= 2)
If the order of evaluation is left to right, then `i' first becomes
6, and then 12, and `atan2()' is called with the two arguments 6 and