From: Fred Drake Date: Tue, 18 Jun 2002 20:39:14 +0000 (+0000) Subject: Typo: bites --> bytes X-Git-Tag: 2.1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b11f2b62fe2ea08b094c76bfc413c22852f76ed;p=thirdparty%2FPython%2Fcpython.git Typo: bites --> bytes --- diff --git a/Doc/lib/libpopen2.tex b/Doc/lib/libpopen2.tex index 69181df4a823..d68436ad1540 100644 --- a/Doc/lib/libpopen2.tex +++ b/Doc/lib/libpopen2.tex @@ -124,7 +124,7 @@ When reading output from a child process that writes a lot of data to standard error while the parent is reading from the child's standard out, a dead lock can occur. A similar situation can occur with other combinations of reads and writes. The essential factors are that more -than \constant{_PC_PIPE_BUF} bites are being written by one process in +than \constant{_PC_PIPE_BUF} bytes are being written by one process in a blocking fashion, while the other process is reading from the other process, also in a blocking fashion.