diff options
author | kato8966 <66937409+kato8966@users.noreply.github.com> | 2023-08-30 11:05:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-30 11:05:29 (GMT) |
commit | 38ab0dba801884b0963ef0daa95e94e120a2b524 (patch) | |
tree | a0743491b58283179fa6e55092d3c0d2edb6b094 | |
parent | 6c484c39beeb66d40ef0a73cc4f1e900ea498cfa (diff) | |
download | cpython-38ab0dba801884b0963ef0daa95e94e120a2b524.zip cpython-38ab0dba801884b0963ef0daa95e94e120a2b524.tar.gz cpython-38ab0dba801884b0963ef0daa95e94e120a2b524.tar.bz2 |
Fix typo in multiprocessing docs (#108666)
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 2efc08f..38d24a8 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -2988,7 +2988,7 @@ Global variables Safe importing of main module Make sure that the main module can be safely imported by a new Python - interpreter without causing unintended side effects (such a starting a new + interpreter without causing unintended side effects (such as starting a new process). For example, using the *spawn* or *forkserver* start method |