aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-07-23 06:02:47 +0300
committerArnold D. Robbins <arnold@skeeve.com>2019-07-23 06:02:47 +0300
commitd5eae9adb4b9ebee89fe4978db0b12b4d7a1328c (patch)
tree0bd2f96e5e969a82460349a60fa497532a2d6bb0 /doc/gawk.texi
parent91bcee4486440e1b9824b24fa8881c09b51a3f25 (diff)
downloadegawk-d5eae9adb4b9ebee89fe4978db0b12b4d7a1328c.tar.gz
egawk-d5eae9adb4b9ebee89fe4978db0b12b4d7a1328c.tar.bz2
egawk-d5eae9adb4b9ebee89fe4978db0b12b4d7a1328c.zip
Documentation updates and fixes.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r--doc/gawk.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 46cf5f55..9c6f9e29 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -71,7 +71,7 @@
@set TITLE GAWK: Effective AWK Programming
@end ifclear
@set SUBTITLE A User's Guide for GNU Awk
-@set EDITION 5.0
+@set EDITION 5.1
@iftex
@set DOCUMENT book
@@ -8836,7 +8836,7 @@ to be portable to all @command{awk} implementations.
@quotation NOTE
Unfortunately, @command{gawk} has not been consistent in its treatment
of a construct like @samp{@w{"echo "} "date" | getline}.
-Most versions, including the current version, treat it at as
+Most versions, including the current version, treat it as
@samp{@w{("echo "} "date") | getline}.
(This is also how BWK @command{awk} behaves.)
Some versions instead treat it as
@@ -11154,7 +11154,7 @@ multiple lines by ending the line with a backslash. For example in C:
int main()
@{
- printf "hello, \
+ printf("hello, \
world\n");
return 0;
@}