diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-09-17 22:13:50 +0300 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-12-13 01:29:01 +1100 |
commit | d4d4bc5827b9b066b110f68f9221d8e9d15cba38 (patch) | |
tree | aaa725db4fa78cc051bca4b95597b7806ba10e83 /tests/basics/special_methods2.py | |
parent | 814d580a15c5f7478f173f621809155a369e07fa (diff) | |
download | micropython-d4d4bc5827b9b066b110f68f9221d8e9d15cba38.tar.gz micropython-d4d4bc5827b9b066b110f68f9221d8e9d15cba38.zip |
tests/basics/special_methods2: Typo fix in comment.
Diffstat (limited to 'tests/basics/special_methods2.py')
-rw-r--r-- | tests/basics/special_methods2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/special_methods2.py b/tests/basics/special_methods2.py index c21618e93d..c72c8cf00f 100644 --- a/tests/basics/special_methods2.py +++ b/tests/basics/special_methods2.py @@ -134,6 +134,6 @@ print('a' in dir(Cud)) # ne is not supported, !(eq) is called instead #cud1 != cud2 # -# in the followin test, cpython still calls __eq__ +# in the following test, cpython still calls __eq__ # cud3=cud1 # cud3==cud1 |