From d9b5f4f8afbe657612d0017eee5114c6a3ae7618 Mon Sep 17 00:00:00 2001 From: SHRESTHA Date: Wed, 10 Dec 2025 00:05:38 +0530 Subject: [PATCH] fix(curriculum): Resolved grammar error in Email Simulator (#64411) --- .../blocks/workshop-email-simulator/68b9366fae8b13c1278761b1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-email-simulator/68b9366fae8b13c1278761b1.md b/curriculum/challenges/english/blocks/workshop-email-simulator/68b9366fae8b13c1278761b1.md index b1089bb3c6b..3970d42f108 100644 --- a/curriculum/challenges/english/blocks/workshop-email-simulator/68b9366fae8b13c1278761b1.md +++ b/curriculum/challenges/english/blocks/workshop-email-simulator/68b9366fae8b13c1278761b1.md @@ -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--