diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-29 07:11:04 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-29 07:11:04 -0400 |
| commit | 7b912ce4140cb649a2d4a5b86a6740ff3966b8f2 (patch) | |
| tree | ae10ed387a772d769dbc14e8aa9a6934400a14c1 /doc | |
| parent | 28eca00dcbe42001ce0188f94b475b381808b02c (diff) | |
| download | python-coveragepy-git-7b912ce4140cb649a2d4a5b86a6740ff3966b8f2.tar.gz | |
Nibbling away
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/index.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/index.rst b/doc/index.rst index 555635c8..99a628c4 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -17,14 +17,14 @@ Getting started with coverage.py is easy: #. Install coverage.py from the
`coverage page on the cheeseshop <http://pypi.python.org/pypi/coverage>`_.
-#. Run coverage.py to execute your program and gather data:
+#. Run coverage to execute your program and gather data:
.. code-block:: console
$ coverage -e -x my_program.py arg1 arg2
blah blah ..your program's output.. blah blah
-#. Run coverage.py to report on the results:
+#. Run coverage to report on the results:
.. code-block:: console
@@ -36,7 +36,7 @@ Getting started with coverage.py is easy: -------------------------------------------------------
TOTAL 76 66 87%
-#. For a nicer presentation, run coverage.py to get annotated HTML listings
+#. For a nicer presentation, run coverage to get annotated HTML listings
detailing missed lines:
.. code-block:: console
@@ -47,8 +47,8 @@ Getting started with coverage.py is easy: `report like this </code/coverage/sample_html/index.html>`_.
-Using coverage.py
------------------
+Using coverage
+--------------
There are two supported interfaces to coverage: a :ref:`command line <cmd>` and
an :ref:`API <api>`.
|
