fix(curriculum): typo in daily challenge (#61174)

This commit is contained in:
Tom
2025-07-01 10:34:32 -05:00
committed by GitHub
parent 9418eadfe9
commit 50482f5ccd

View File

@@ -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
```