diff --git a/docs/user-guide/misc/multiprocessing.md b/docs/user-guide/misc/multiprocessing.md index 4973da8c0155..d46a96a52bc5 100644 --- a/docs/user-guide/misc/multiprocessing.md +++ b/docs/user-guide/misc/multiprocessing.md @@ -52,7 +52,6 @@ Consider the example below, which is a slightly modified example posted on the [ {{code_block('user-guide/misc/multiprocess','example1',[])}} Using `fork` as the method, instead of `spawn`, will cause a dead lock. -Please note: Polars will not even start and raise the error on multiprocessing method being set wrong, but if the check had not been there, the deadlock would exist. The fork method is equivalent to calling `os.fork()`, which is a system call as defined in [the POSIX standard](https://pubs.opengroup.org/onlinepubs/9699919799/functions/fork.html):