diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-12-12 07:42:32 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-12-12 07:42:32 +0200 |
commit | 769d7886cceec048dcd4aa67236b5971891418c3 (patch) | |
tree | e88daa3a94cea72240489eafb975cb0d75cd641f /doc/gawk.info | |
parent | 4518d0d3c80d8c616a8a7f65548fde4866495289 (diff) | |
download | egawk-769d7886cceec048dcd4aa67236b5971891418c3.tar.gz egawk-769d7886cceec048dcd4aa67236b5971891418c3.tar.bz2 egawk-769d7886cceec048dcd4aa67236b5971891418c3.zip |
Small doc fix.
Diffstat (limited to 'doc/gawk.info')
-rw-r--r-- | doc/gawk.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gawk.info b/doc/gawk.info index fe080ce1..d6fccecd 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -11850,7 +11850,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 |