@@ -160,7 +160,7 @@ However, if you really do need to use some shared data then
160160
161161 The ``'d' `` and ``'i' `` arguments used when creating ``num `` and ``arr `` are
162162 typecodes of the kind used by the :mod: `array ` module: ``'d' `` indicates a
163- double precision float and ``'i' `` inidicates a signed integer. These shared
163+ double precision float and ``'i' `` indicates a signed integer. These shared
164164 objects will be process and thread safe.
165165
166166 For more flexibility in using shared memory one can use the
@@ -784,7 +784,7 @@ object -- see :ref:`multiprocessing-managers`.
784784
785785 A bounded semaphore object: a clone of :class: `threading.BoundedSemaphore `.
786786
787- (On Mac OSX this is indistiguishable from :class: `Semaphore ` because
787+ (On Mac OSX this is indistinguishable from :class: `Semaphore ` because
788788 ``sem_getvalue() `` is not implemented on that platform).
789789
790790.. class :: Condition([lock])
@@ -893,8 +893,8 @@ processes.
893893
894894.. note ::
895895
896- Although it is posible to store a pointer in shared memory remember that this
897- will refer to a location in the address space of a specific process.
896+ Although it is possible to store a pointer in shared memory remember that
897+ this will refer to a location in the address space of a specific process.
898898 However, the pointer is quite likely to be invalid in the context of a second
899899 process and trying to dereference the pointer from the second process may
900900 cause a crash.
@@ -1776,7 +1776,7 @@ handler type) for messages from different processes to get mixed up.
17761776 handler which sends output to :data: `sys.stderr ` using format
17771777 ``'[%(levelname)s/%(processName)s] %(message)s' ``. (The logger allows use of
17781778 the non-standard ``'%(processName)s' `` format.) Message sent to this logger
1779- will not by default propogate to the root logger.
1779+ will not by default propagate to the root logger.
17801780
17811781 Note that on Windows child processes will only inherit the level of the
17821782 parent process's logger -- any other customization of the logger will not be
0 commit comments