From c759d83cd3f8d82dbc5f31a0b882f7ec46558786 Mon Sep 17 00:00:00 2001 From: Leah Thompson <97814431+leahthompson01@users.noreply.github.com> Date: Thu, 25 Aug 2022 07:36:35 -0400 Subject: [PATCH] fix: add comma to fix typo (#47378) added a comma to fix typo --- .../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 c292a9c4938..97f7eb771a8 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 @@ -18,7 +18,7 @@ But first, let's cover some functional terminology: Functions that can be assigned to a variable, passed into another function, or returned from another function just like any other normal value, are called first class functions. In JavaScript, all functions are first class functions. -The functions that take a function as an argument, or return a function as a return value are called higher order functions. +The functions that take a function as an argument, or return a function as a return value, are called higher order functions. 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.