Skip to content

Commit 0305da7

Browse files
committed
Corrected typo in comment
The comment was explaining module naming so the typo could be confusing.
1 parent ef0c268 commit 0305da7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python2/koans/about_scope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_dog_is_not_available_in_the_current_scope(self):
2424

2525
def test_you_can_reference_nested_classes_using_the_scope_operator(self):
2626
fido = jims.Dog()
27-
# name 'jims' module name is taken from jim.py filename
27+
# name 'jims' module name is taken from jims.py filename
2828

2929
rover = joes.Dog()
3030
self.assertEqual(__, fido.identify())

python3/koans/about_scope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_dog_is_not_available_in_the_current_scope(self):
2020

2121
def test_you_can_reference_nested_classes_using_the_scope_operator(self):
2222
fido = jims.Dog()
23-
# name 'jims' module name is taken from jim.py filename
23+
# name 'jims' module name is taken from jims.py filename
2424

2525
rover = joes.Dog()
2626
self.assertEqual(__, fido.identify())

0 commit comments

Comments
 (0)