summaryrefslogtreecommitdiffhomepage
path: root/python.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-06-28 21:17:29 -0700
committerAdam <adam@adambard.com>2013-06-28 21:17:29 -0700
commit4789dd1097ea3980374715eaac7852552d2fa036 (patch)
tree56fbd1e56a3442ad2a3c613075200f682751a8d0 /python.html.markdown
parent04cedf98446f124d4d0bc15b9a7341015d2707ca (diff)
Fixes #26: triple-quoted strings are identified as such, not as comments
Diffstat (limited to 'python.html.markdown')
-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
"""
####################################################