#7805: wait until all workers are started before collecting their PIDs
diff --git a/Lib/multiprocessing/process.py b/Lib/multiprocessing/process.py
index 56719d9..998dab7 100644
--- a/Lib/multiprocessing/process.py
+++ b/Lib/multiprocessing/process.py
@@ -179,7 +179,7 @@
     @property
     def ident(self):
         '''
-        Return indentifier (PID) of process or `None` if it has yet to start
+        Return identifier (PID) of process or `None` if it has yet to start
         '''
         if self is _current_process:
             return os.getpid()