#18705: fix a number of typos.  Patch by FĂ©vry Thibault.
diff --git a/Lib/pdb.py b/Lib/pdb.py
index e6d7f8f..b4a19e4 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -1004,7 +1004,7 @@
     def do_run(self, arg):
         """run [args...]
         Restart the debugged python program. If a string is supplied
-        it is splitted with "shlex", and the result is used as the new
+        it is split with "shlex", and the result is used as the new
         sys.argv.  History, breakpoints, actions and debugger options
         are preserved.  "restart" is an alias for "run".
         """
@@ -1361,7 +1361,7 @@
     def do_interact(self, arg):
         """interact
 
-        Start an interative interpreter whose global namespace
+        Start an interactive interpreter whose global namespace
         contains all the (global and local) names found in the current scope.
         """
         ns = self.curframe.f_globals.copy()