Skip to content

Commit a438081

Browse files
authored
Update README.es.md
1 parent b681c43 commit a438081

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
Las funciones Lambda permiten una sintaxis corta para escribir expresiones de funciones.
66

77
```python
8-
multi = lambda x, y: x * y
9-
print(multi(2,2))
8+
multiply = lambda x, y: x * y
9+
print(multiply(2,2))
1010
```
1111

1212
## 📝 Instrucciones:

0 commit comments

Comments
 (0)