summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-06 23:37:17 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-12-06 23:37:17 (GMT)
commitb404145936cb4363b5ee83b5ef0de96c1353d26e (patch)
treeb13adf460367198160160dc6d96ada7d8a57e884
parentc7cb69263d7b47d68917c72eb558304596bdde18 (diff)
downloadcpython-b404145936cb4363b5ee83b5ef0de96c1353d26e.zip
cpython-b404145936cb4363b5ee83b5ef0de96c1353d26e.tar.gz
cpython-b404145936cb4363b5ee83b5ef0de96c1353d26e.tar.bz2
s/it/if/ in descriptions of spawn mode argument.
-rw-r--r--Doc/lib/libos.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index f8cda4c..9683485 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -1014,7 +1014,7 @@ functions are described in section \ref{os-newstreams}.
\funcline{spawnvpe}{mode, file, args, env}
Execute the program \var{path} in a new process. If \var{mode} is
\constant{P_NOWAIT}, this function returns the process ID of the new
-process; it \var{mode} is \constant{P_WAIT}, returns the process's
+process; if \var{mode} is \constant{P_WAIT}, returns the process's
exit code if it exits normally, or \code{-\var{signal}}, where
\var{signal} is the signal that killed the process.