Skip to content

Commit 9f86dd1

Browse files
author
Alex Kesling
committed
Typo in about_string_manipulation.py Python3
1 parent a258068 commit 9f86dd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python3/koans/about_string_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_use_format_to_interpolate_variables(self):
1111
string = "The values are {0} and {1}".format(value1, value2)
1212
self.assertEqual(__, string)
1313

14-
def test_formatted_values_con_be_shown_in_any_order_or_be_repeated(self):
14+
def test_formatted_values_can_be_shown_in_any_order_or_be_repeated(self):
1515
value1 = 'doh'
1616
value2 = 'DOH'
1717
string = "The values are {1}, {0}, {0} and {1}!".format(value1, value2)

0 commit comments

Comments
 (0)