Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 4604459

Browse files
committed
Fix a few filename/spelling errors
1 parent e412918 commit 4604459

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python2/koans/about_class_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Dog(object):
1414

1515
def test_new_style_class_objects_are_objects(self):
1616
# Note: Old style class instances are not objects but they are being
17-
# phased out it Python 3.
17+
# phased out in Python 3.
1818

1919
fido = self.Dog()
2020
self.assertEqual(__, isinstance(fido, object))

python2/koans/about_packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_use_absolute_imports_to_import_upper_level_modules(self):
5656
# contemplate_koans.py is the root module in this package because its
5757
# the first python module called in koans.
5858
#
59-
# If contemplate_koan.py was based in a_package_folder that would be
59+
# If contemplate_koans.py was based in a_package_folder that would be
6060
# the root folder, which would make reaching the koans folder
6161
# almost impossible. So always leave the starting python script in
6262
# a folder which can reach everything else.

python3/koans/about_packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_use_absolute_imports_to_import_upper_level_modules(self):
4848
# contemplate_koans.py is the root module in this package because its
4949
# the first python module called in koans.
5050
#
51-
# If contemplate_koan.py was based in a_package_folder that would be
51+
# If contemplate_koans.py was based in a_package_folder that would be
5252
# the root folder, which would make reaching the koans folder
5353
# almost impossible. So always leave the starting python script in
5454
# a folder which can reach everything else.

0 commit comments

Comments
 (0)