summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-05-29 07:11:04 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-05-29 07:11:04 -0400
commit2603ed1497424f177b445eb4edbd71699c467321 (patch)
tree04730a1522c0ae3e6037f9a19b29158cddc50c03
parent6f30b57ac2c3587847195683e523b80ee279eaf5 (diff)
downloadpython-coveragepy-2603ed1497424f177b445eb4edbd71699c467321.tar.gz
Nibbling away
-rw-r--r--TODO.txt4
-rw-r--r--doc/index.rst10
2 files changed, 7 insertions, 7 deletions
diff --git a/TODO.txt b/TODO.txt
index fab81c8..26445d8 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -8,8 +8,8 @@ Coverage TODO
+ Proper project layout.
+ Code moved to bitbucket.
-- Fix formatting of code in list items on nedbat.com
-- Fix formatting of class and method names (no mono, bold)
++ Fix formatting of code in list items on nedbat.com
++ Fix formatting of class and method names (no mono, bold)
- Add next/prev links to bottom of pages on docs.
- Finish writing (comments in index.rst)
- Fix references to code/modules/coverage
diff --git a/doc/index.rst b/doc/index.rst
index 555635c..99a628c 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>`.