summaryrefslogtreecommitdiffstats
path: root/Doc/library/parser.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/parser.rst')
-rw-r--r--Doc/library/parser.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/parser.rst b/Doc/library/parser.rst
index f5cd877..5aad938 100644
--- a/Doc/library/parser.rst
+++ b/Doc/library/parser.rst
@@ -635,7 +635,7 @@ on the same line as the definition of the code block, as in ::
while the long form uses an indented block and allows nested definitions::
def make_power(exp):
- "Make a function that raises an argument to the exponent `exp'."
+ "Make a function that raises an argument to the exponent `exp`."
def raiser(x, y=exp):
return x ** y
return raiser