summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--python.html.markdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 3b5075ae..3127cf2e 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -15,8 +15,9 @@ to Python 2.x. Look for another tour of Python 3 soon!
```python
# Single line comments start with a hash.
-""" Multiline comments can we written
- using three "'s
+""" Multiline strings can we written
+ using three "'s, and are often used
+ as comments
"""
####################################################