Skip to content

Commit e415cf6

Browse files
authoredAug 18, 2022
Update README.md
line 26. Changed the word don't to doesn't
1 parent afa6454 commit e415cf6

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.