Skip to content

Commit 4a9ad23

Browse files
trptcolinmpirnat
authored andcommitted
Fix minor typo in comment (gregmalcolm#172)
1 parent e7ffc98 commit 4a9ad23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python2/koans/about_comprehension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_double_list_comprehension(self):
4646
def test_creating_a_set_with_set_comprehension(self):
4747
comprehension = { x for x in 'aabbbcccc'}
4848

49-
self.assertEqual(__, comprehension) # rememeber that set members are unique
49+
self.assertEqual(__, comprehension) # remember that set members are unique
5050

5151
def test_creating_a_dictionary_with_dictionary_comprehension(self):
5252
dict_of_weapons = {'first': 'fear', 'second': 'surprise',

0 commit comments

Comments
 (0)