Fixed typos/spelling errors in scenarios/speed

This commit is contained in:
Kyle Kelley
2013-03-21 17:23:13 -04:00
parent 3042e08448
commit d3ed3cf9ce
+4 -4
View File
@@ -42,7 +42,7 @@ The GIL
`The GIL`_ (Global Interpreter Lock) is how Python allows multiple threads to `The GIL`_ (Global Interpreter Lock) is how Python allows multiple threads to
operate at the same time. Python's memory management isn't entirely thread-safe, operate at the same time. Python's memory management isn't entirely thread-safe,
so the GIL is required to prevents multiple threads from running the same so the GIL is required to prevent multiple threads from running the same
Python code at once. Python code at once.
David Beazley has a great `guide`_ on how the GIL operates. He also covers the David Beazley has a great `guide`_ on how the GIL operates. He also covers the
@@ -58,8 +58,8 @@ C Extensions
The GIL The GIL
------- -------
`Special care`_ must be taken when writing C extensions to make sure you r `Special care`_ must be taken when writing C extensions to make sure you
egister your threads with the interpreter. register your threads with the interpreter.
C Extensions C Extensions
:::::::::::: ::::::::::::
@@ -86,7 +86,7 @@ Threading
--------- ---------
Spanwing Processes Spawning Processes
------------------ ------------------