Skip to content

Commit c794f69

Browse files
author
John Gardner
committed
Fix spelling of navel in py3.
1 parent ed67dcf commit c794f69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python3/koans/about_asserts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ def test_that_sometimes_we_need_to_know_the_class_type(self):
6060

6161
# Sometimes we will ask you what the class type of an object is.
6262
#
63-
# For example, contemplate the text string "naval". What is its class type?
63+
# For example, contemplate the text string "navel". What is its class type?
6464
# The koans runner will include this feedback for this koan:
6565
#
6666
# AssertionError: '-=> FILL ME IN! <=-' != <type 'str'>
6767
#
68-
# So "naval".__class__ is equal to <type 'str'>? No not quite. This
68+
# So "navel".__class__ is equal to <type 'str'>? No not quite. This
6969
# is just what it displays. The answer is simply str.
7070
#
7171
# See for yourself:
7272

73-
self.assertEqual(__, "naval".__class__) # It's str, not <type 'str'>
73+
self.assertEqual(__, "navel".__class__) # It's str, not <type 'str'>
7474

7575
# Need an illustration? More reading can be found here:
7676
#

0 commit comments

Comments
 (0)