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
commitdc34048d05dd28903292d27fc683a5810e67cd78 (patch)
treea8fca8ebcd34531acbde2536557f79a1e9b3921b
parent19f63a4911901569ae4dfd651c9a9340394ce65e (diff)
downloadpython-coveragepy-dc34048d05dd28903292d27fc683a5810e67cd78.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 bbe3bd4..74747e8 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.