Skip to content

Commit 838f41e

Browse files
committed
Merge pull request gregmalcolm#115 from vmwaredevops/navel_spelling
Fix spelling of navel.
2 parents d005104 + c794f69 commit 838f41e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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
#

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)