Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fa258bf

Browse files
committed
updated readme 4GeeksAcademy#3 and 4GeeksAcademy#7
1 parent c2576e3 commit fa258bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exercises/03-What-is-a-function/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `03` What is a function?
22

3-
You can see a function as a **fragment of code** encapsulated between curly brackets to be able to use it several times.
3+
You can see a function as a **fragment of code** we can use several times.
44

55
For example: If we want to get the sum of two numbers, we can declare a function called `sum` that returns the sum of number1 and number2:
66

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# `07` Lambda functions
22

33
Take aim and note
4-
Arrow functions allows a short syntax for writing function expressions.
4+
Lambda functions allows a short syntax for writing function expressions.
55

66
```python
77
multy = lambda x, y: x * y

0 commit comments

Comments
 (0)