diff options
| author | Tim Gates <tim.gates@iress.com> | 2022-07-04 19:52:06 +1000 |
|---|---|---|
| committer | Tim Gates <tim.gates@iress.com> | 2022-07-04 19:52:06 +1000 |
| commit | 88ffec368f4a1677c76ef152aba06aa12a90223e (patch) | |
| tree | 3f86fb689711a16a5d07d110eb5409f931c2cbbd /docs/python_threads.rst | |
| parent | fa91f03d5ec8d46017300cb6b161ec3dbe0d3a0c (diff) | |
| download | greenlet-88ffec368f4a1677c76ef152aba06aa12a90223e.tar.gz | |
docs: Fix a few typos
There are small typos in:
- docs/python_threads.rst
- src/greenlet/greenlet.cpp
- src/greenlet/greenlet_thread_state.hpp
Fixes:
- Should read `uncollectible` rather than `uncollectable`.
- Should read `somehow` rather than `somewhow`.
- Should read `communicate` rather than `commuticate`.
Diffstat (limited to 'docs/python_threads.rst')
| -rw-r--r-- | docs/python_threads.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/python_threads.rst b/docs/python_threads.rst index 1701f28..88f55b8 100644 --- a/docs/python_threads.rst +++ b/docs/python_threads.rst @@ -36,7 +36,7 @@ Prior to greenlet 2.0, when a thread dies, the thread's main greenlet was not considered to be dead. This has been changed in greenlet 2.0; however, observing this property is still a race condition, and, on some platforms (those that cannot use the C runtime to detect when a thread -exits), not guaranteed (because of the potential for uncollectable +exits), not guaranteed (because of the potential for uncollectible reference cycles to keep the Python thread state alive). In addition, this is considered an implementation detail and may not be true in all greenlet implementations. |
