From 50482f5ccd97fe69d1d56e5359de7b6796daff46 Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Tue, 1 Jul 2025 10:34:32 -0500 Subject: [PATCH] fix(curriculum): typo in daily challenge (#61174) --- .../daily-coding-challenges-python/python-challenge-14.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```