#7388: "python".capitalize() in the Doc
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 4de6829..460b2f3 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -199,7 +199,7 @@
You can run tests with more detail (higher verbosity) by passing in the -v flag::
- python-m unittest -v test_module
+ python -m unittest -v test_module
For a list of all the command line options::
@@ -1600,7 +1600,7 @@
.. note::
- The default pattern is 'test*.py'. This matches all python files
+ The default pattern is 'test*.py'. This matches all Python files
that start with 'test' but *won't* match any test directories.
A pattern like 'test*' will match test packages as well as