Skip to content

Commit ac91ff0

Browse files
Updates HOF section
Closes #16
1 parent b44dd88 commit ac91ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ There is a little difference between __arguments__ and __parameters__:
205205
## Higher-Order Functions (HOF)
206206

207207
A function that takes a function as an argument and/or returns a function, basically we can treat functions as a value.
208-
In Python every function/method is a Higher-Order Function.
208+
In Python every function/method can be a Higher-Order Function.
209209

210210
The functions like `reduce`, `map` and `filter` are good examples of __HOF__, they receive a function as their first argument.
211211
```python

0 commit comments

Comments
 (0)