summaryrefslogtreecommitdiff
path: root/docs/topics/performance.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/performance.txt')
-rw-r--r--docs/topics/performance.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/performance.txt b/docs/topics/performance.txt
index 042c09f8d3..dcffb1a683 100644
--- a/docs/topics/performance.txt
+++ b/docs/topics/performance.txt
@@ -204,7 +204,7 @@ therefore have performance implications, and the more expensive the work
concerned, the more there is to gain through laziness.
Python provides a number of tools for lazy evaluation, particularly through the
-:py:term:`generator` and :py:term:`generator expression` constructs. It's worth
+:term:`generator` and :term:`generator expression` constructs. It's worth
reading up on laziness in Python to discover opportunities for making use of
lazy patterns in your code.