diff options
author | Adam Bard <github@adambard.com> | 2013-06-27 11:37:32 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-06-27 11:37:32 -0700 |
commit | 8a5cca1f056c6edd45f8a175e7ffb51708421762 (patch) | |
tree | 29f80ee7811eab8f9eb2d75d8919e766a89a9262 | |
parent | 2e9f5a642bc7a90045830892af1ade48ea613a2a (diff) | |
parent | 26d6fe55e382517ed3015ee137afa3c057b4a02d (diff) |
Merge pull request #5 from jvns/patch-1
Fix typo in Python tutorial
-rw-r--r-- | python.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown index 615ee249..eb8f5cb4 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -26,7 +26,7 @@ to Python 2.x. Look for another tour of Python 3 soon! # Math is what you would expect 1 + 1 #=> 2 -8 - 1 #=> 9 +8 - 1 #=> 7 10 * 2 #=> 20 35 / 5 #=> 7 |