Skip to content

Commit b681c43

Browse files
authored
Update README.md
1 parent 355a13a commit b681c43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/07-lambda-function-two/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
99
Lambda functions allow a short syntax for writing function expressions.
1010

1111
```python
12-
multi = lambda x, y: x * y
13-
print(multi(2,2))
12+
multiply = lambda x, y: x * y
13+
print(multiply(2,2))
1414
```
1515

1616
## 📝 Instructions:

0 commit comments

Comments
 (0)