Skip to content

Pedantic correction of oxford-comma #289

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion koans/about_string_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_use_format_to_interpolate_variables(self):
def test_formatted_values_can_be_shown_in_any_order_or_be_repeated(self):
value1 = 'doh'
value2 = 'DOH'
string = "The values are {1}, {0}, {0} and {1}!".format(value1, value2)
string = "The values are {1}, {0}, {0} and, {1}!".format(value1, value2)
self.assertEqual(__, string)

def test_any_python_expression_may_be_interpolated(self):
Expand Down