diff options
author | Adam <adam@adambard.com> | 2013-06-28 21:17:29 -0700 |
---|---|---|
committer | Adam <adam@adambard.com> | 2013-06-28 21:17:29 -0700 |
commit | 4789dd1097ea3980374715eaac7852552d2fa036 (patch) | |
tree | 56fbd1e56a3442ad2a3c613075200f682751a8d0 | |
parent | 04cedf98446f124d4d0bc15b9a7341015d2707ca (diff) |
Fixes #26: triple-quoted strings are identified as such, not as comments
-rw-r--r-- | python.html.markdown | 5 |
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 """ #################################################### |