- Fix typo in os.execvp docstring.
diff --git a/Lib/os.py b/Lib/os.py
index 12ebbcb..c612e17 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -336,7 +336,7 @@
     execvpe(file, args[:-1], env)
 
 def execvp(file, args):
-    """execp(file, args)
+    """execvp(file, args)
 
     Execute the executable file (which is searched for along $PATH)
     with argument list args, replacing the current process.