summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-30 22:06:09 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-30 22:06:09 -0400
commit8e5cc59a5428526b43f29a6b8ec067f471a8edcd (patch)
tree5454ea9b0d52d67d0cb6542c7d58b735ebbb63f6
parent3f9f79b7b4b04335c28c5a2924c71c027d45428c (diff)
downloadpython-coveragepy-git-8e5cc59a5428526b43f29a6b8ec067f471a8edcd.tar.gz
Add a missing word in the docs.
-rw-r--r--doc/howitworks.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/howitworks.rst b/doc/howitworks.rst
index bbe3bd4f..74747e80 100644
--- a/doc/howitworks.rst
+++ b/doc/howitworks.rst
@@ -33,7 +33,7 @@ Execution
---------
At the heart of the execution phase is a Python trace function. This is a
-function that Python interpreter invokes for each line executed in a program.
+function that the Python interpreter invokes for each line executed in a program.
Coverage.py implements a trace function that records each file and line number
as it is executed.