diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-02 21:53:51 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-02 21:53:51 +0300 |
commit | d1c0deb3a98a67fcc335de1b394df6cc845fe35a (patch) | |
tree | 6bde4fe393310806385a8c023d196c8ce38b53db /doc/gawk.texi | |
parent | 161ab89bfe117326be4452eaca2bd7b268cf4b08 (diff) | |
download | egawk-d1c0deb3a98a67fcc335de1b394df6cc845fe35a.tar.gz egawk-d1c0deb3a98a67fcc335de1b394df6cc845fe35a.tar.bz2 egawk-d1c0deb3a98a67fcc335de1b394df6cc845fe35a.zip |
Typos fixes in the manual.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index c9b2cdf0..4b62cc81 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -15639,14 +15639,14 @@ of setting up a two-way pipe. Set a timeout for reading from input redirection @var{input_name}. @xref{Read Timeout} for more information. -@item PROCINFO["@var{Iinput_name}", "RETRY"] +@item PROCINFO["@var{input_name}", "RETRY"] If an I/O error that may be retried occurs when reading data from @var{input_name}, and this array entry exists, then @code{getline} returns @minus{}2 instead of following the default behavior of returning @minus{}1 and configuring @var{input_name} to return no further data. An I/O error that may be retried is one where @code{errno} has the value @code{EAGAIN}, @code{EWOULDBLOCK}, @code{EINTR}, or @code{ETIMEDOUT}. This may be useful -in conjunction with @code{\fBPROCINFO["@var{input_name}", "READ_TIMEOUT"]} +in conjunction with @code{PROCINFO["@var{input_name}", "READ_TIMEOUT"]} or situations where a file descriptor has been configured to behave in a non-blocking fashion. @xref{Retrying Input} for more information. |