summaryrefslogtreecommitdiff
path: root/Doc/tutorial/introduction.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/tutorial/introduction.rst')
-rw-r--r--Doc/tutorial/introduction.rst6
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 4226ffdde8..a99e7d2211 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -13,9 +13,9 @@ end a multi-line command.
Many of the examples in this manual, even those entered at the interactive
prompt, include comments. Comments in Python start with the hash character,
-``'#'``, and extend to the end of the physical line. A comment may appear at
+``#``, and extend to the end of the physical line. A comment may appear at
the start of a line or following whitespace or code, but not within a string
-literal. A hash character within a string literal is just a hash character.
+literal. A hash character within a string literal is just a hash character.
Some examples::
@@ -608,5 +608,3 @@ This example introduces several new features.
Note that nothing appeared after the loop ended, until we printed
a newline.
-
-