We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ffc98 commit 4a9ad23Copy full SHA for 4a9ad23
1 file changed
python2/koans/about_comprehension.py
@@ -46,7 +46,7 @@ def test_double_list_comprehension(self):
46
def test_creating_a_set_with_set_comprehension(self):
47
comprehension = { x for x in 'aabbbcccc'}
48
49
- self.assertEqual(__, comprehension) # rememeber that set members are unique
+ self.assertEqual(__, comprehension) # remember that set members are unique
50
51
def test_creating_a_dictionary_with_dictionary_comprehension(self):
52
dict_of_weapons = {'first': 'fear', 'second': 'surprise',
0 commit comments