From 7fb1b142e35ff59d96482be23e599113d4596d8b Mon Sep 17 00:00:00 2001
From: alirezaghey <26653424+alirezaghey@users.noreply.github.com>
Date: Mon, 17 May 2021 20:53:15 +0000
Subject: [PATCH] fix(curriculum): small english improvement (#42167)
---
.../understand-functional-programming-terminology.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/understand-functional-programming-terminology.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/understand-functional-programming-terminology.md
index ee3572d6ae..c292a9c493 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/understand-functional-programming-terminology.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/understand-functional-programming-terminology.md
@@ -20,7 +20,7 @@ Functions that can be assigned to a variable, passed into another function, or r
The functions that take a function as an argument, or return a function as a return value are called higher order functions.
-When the functions are passed in to another function or returned from another function, then those functions which gets passed in or returned can be called a lambda.
+When functions are passed in to or returned from another function, then those functions which were passed in or returned can be called a lambda.
# --instructions--