summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-06-18 20:38:05 (GMT)
committerFred Drake <fdrake@acm.org>2002-06-18 20:38:05 (GMT)
commitf4bf7aa292f18de9bafb468788c272324f7bc228 (patch)
tree222f4be2d4d104d4ece4731aad08fced19ea3a3d
parent9ea01d415f9e5ab69265112b5ca3fbec5d49decd (diff)
downloadcpython-f4bf7aa292f18de9bafb468788c272324f7bc228.zip
cpython-f4bf7aa292f18de9bafb468788c272324f7bc228.tar.gz
cpython-f4bf7aa292f18de9bafb468788c272324f7bc228.tar.bz2
Typo: bites --> bytes
(Hanging around small kids too much...;)
-rw-r--r--Doc/lib/libpopen2.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libpopen2.tex b/Doc/lib/libpopen2.tex
index a8de4dc..83b85ab 100644
--- a/Doc/lib/libpopen2.tex
+++ b/Doc/lib/libpopen2.tex
@@ -131,7 +131,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.