Skip to content

Commit ed67dcf

Browse files
author
John Gardner
committed
Fix spelling of navel.
1 parent 3685a39 commit ed67dcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python2/koans/about_asserts.py

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

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

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

7777
# Need an illustration? More reading can be found here:
7878
#

0 commit comments

Comments
 (0)