File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ lightweight coroutine provided to Python as a C extension module.
3434Greenlets all run inside of the OS process for the main
3535program but are scheduled cooperatively. This differs from any of
3636the real parallelism constructs provided by `` multiprocessing `` or
37- `` multithreading `` libraries which do spin processes and posix threads
37+ `` multithreading `` libraries which do spin processes and POSIX threads
3838which are truly parallel.
3939
4040## Synchronous & Asynchronous Execution
@@ -260,8 +260,8 @@ Even though gevent is normally deterministic, sources of
260260non-determinism can creep into your program when you beging to
261261interact with outside services such as sockets and files. Thus
262262even though green threads are a form of "deterministic
263- concurrency", they still can experience some of the smae problems
264- that posix threads and processes experience.
263+ concurrency", they still can experience some of the same problems
264+ that POSIX threads and processes experience.
265265
266266The perennial problem involved with concurrency is known as a
267267* race condition* . Simply put is when two concurrent threads
You can’t perform that action at this time.
0 commit comments