diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-12-28 03:18:48 -0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-12-28 03:18:48 -0800 |
commit | bb7dab144ec36cc7e167fc1350d7c25782ffebff (patch) | |
tree | ba6c3c2f1a7af77e6904a79176198c8cd737ecc1 | |
parent | 6955562ae1a82e3eb5b69cf89171cc2f9f862806 (diff) | |
download | my_new_personal_website-bb7dab144ec36cc7e167fc1350d7c25782ffebff.tar.xz my_new_personal_website-bb7dab144ec36cc7e167fc1350d7c25782ffebff.zip |
HEAD~2: Typo fix
-rw-r--r-- | source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md b/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md index 01b7e2c4..a64ce3d3 100644 --- a/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md +++ b/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md @@ -45,7 +45,7 @@ Accessing '__str__' '0' ``` -In addition, here's what happens if you try to let "pass through" a function: +In addition, here's what happens if you try to "pass through" a function: ```python >>> def f(): return True |