fix(curriculum): Resolved grammar error in Email Simulator (#64411)

This commit is contained in:
SHRESTHA
2025-12-10 00:05:38 +05:30
committed by GitHub
parent 673e913b78
commit d9b5f4f8af
@@ -9,7 +9,7 @@ dashedName: step-15
Your inbox needs a way to receive new emails. When someone sends an email to a user, it should be added to their inbox.
Add a method called `receive_email` to your `Inbox` class. that takes `self` and an email object `email` as a parameter. Within the method body, add the `email` to the `emails` list using the `append` method.
Add a method called `receive_email` to your `Inbox` class that takes `self` and an email object `email` as parameters. Within the method body, add the `email` to the `emails` list using the `append` method.
# --hints--