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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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