diff --git a/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-14.md b/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-14.md index a0beb935243..010400d2959 100644 --- a/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-14.md +++ b/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-14.md @@ -93,7 +93,7 @@ TestCase().assertEqual(battle("Mr. Smith", "Dr. Jones"), "It was a tie")`) ## --seed-contents-- ```py -def battle(my_army, oppoising_army): +def battle(my_army, opposing_army): return my_army ```