diff options
author | Adam <adam@adambard.com> | 2013-06-27 18:27:14 -0700 |
---|---|---|
committer | Adam <adam@adambard.com> | 2013-06-27 18:27:14 -0700 |
commit | e37b1745a7ef0cfcb4328d8264b3673bc445746f (patch) | |
tree | 2ae7fc9966f17e317279a331ef56ed9fbd6f927f | |
parent | 1fed90cba669b64af4e39e53d167b3c5e94ea1af (diff) |
Fixed a typo
-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 07a83042..42801657 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -154,7 +154,7 @@ tup[:2] #=> (1, 2) a, b, c = (1, 2, 3) # a is now 1, b is now 2 and c is now 3 # Tuples are created by default if you leave out the parentheses d, e, f = 4, 5, 6 -# Now look how easy it is to swap to values +# Now look how easy it is to swap two values e, d = d, e # d is now 5 and e is now 4 |