Skip to content

Commit 092059b

Browse files
authoredApr 7, 2023
Merge pull request 4GeeksAcademy#37 from Chadmichaelg/patch-1
Update README.md
2 parents 5b00b30 + e415cf6 commit 092059b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎exercises/06-lambda-functions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ multiply = lambda p1,p2: p1 * p2
2323

2424
+ **Lambda function** can only have one line.
2525

26-
+ **Lambda function** don't need a `return` statement (it is assumed that it will return whatever is on that one line).
26+
+ **Lambda function** doesn't need a `return` statement (it is assumed that it will return whatever is on that one line).
2727

2828
+ **Lambda functions** can be stored in variables or passed as parameters to another function
2929

0 commit comments

Comments
 (0)
Please sign in to comment.