Skip to content

Commit 60bcce5

Browse files
committed
Upcases references to POSIX.
Also, fixes a small typo. s/smae/same/g
1 parent 38e2917 commit 60bcce5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ lightweight coroutine provided to Python as a C extension module.
3434
Greenlets all run inside of the OS process for the main
3535
program but are scheduled cooperatively. This differs from any of
3636
the 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
3838
which are truly parallel.
3939

4040
## Synchronous & Asynchronous Execution
@@ -260,8 +260,8 @@ Even though gevent is normally deterministic, sources of
260260
non-determinism can creep into your program when you beging to
261261
interact with outside services such as sockets and files. Thus
262262
even 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

266266
The perennial problem involved with concurrency is known as a
267267
*race condition*. Simply put is when two concurrent threads

0 commit comments

Comments
 (0)