summaryrefslogtreecommitdiffhomepage
path: root/python.html.markdown
diff options
context:
space:
mode:
authorJack Hooper <jackhooper@users.noreply.github.com>2014-11-12 02:03:50 +1100
committerJack Hooper <jackhooper@users.noreply.github.com>2014-11-12 02:03:50 +1100
commit4d85f161d8399f80e3c7ca93eb7ad8ed8018a327 (patch)
tree7cfa4cbce058ff7ff404481ea35a75339469c599 /python.html.markdown
parent0429c31d6d640889cd40ad0fba89a476bf1e7480 (diff)
More apostrophe fixes
I hate to be that guy, but... I found a couple more.
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