summaryrefslogtreecommitdiffhomepage
path: root/python.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-11-11 11:33:38 -0600
committerLevi Bostian <levi.bostian@gmail.com>2014-11-11 11:33:38 -0600
commitdb32ddc6205b2e8c894bfb4ce2c4921eccc93bd0 (patch)
tree1ed84fb94b3f4a8c6fc7b09f6d7dee450fc07b39 /python.html.markdown
parentb0f4383934a2cfb25ae6fb26338d504616ad4876 (diff)
parent38cf765079a3bd7ea8a2493857b7d2bc26d5fe30 (diff)
Merge pull request #856 from jackhooper/master
More apostrophe fixes
Diffstat (limited to 'python.html.markdown')
-rw-r--r--python.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 961d0965..f7b0082c 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -21,7 +21,7 @@ to Python 2.x. For Python 3.x, take a look at the Python 3 tutorial.
# Single line comments start with a number symbol.
""" Multiline strings can be written
- using three "'s, and are often used
+ using three "s, and are often used
as comments
"""
@@ -55,7 +55,7 @@ to Python 2.x. For Python 3.x, take a look at the Python 3 tutorial.
# Modulo operation
7 % 3 # => 1
-# Exponentiation (x to the y'th power)
+# Exponentiation (x to the yth power)
2**4 # => 16
# Enforce precedence with parentheses