diff --git a/notes-en/python-iterators.md b/notes-en/python-iterators.md
index 79e6821..99d18ac 100644
--- a/notes-en/python-iterators.md
+++ b/notes-en/python-iterators.md
@@ -33,7 +33,7 @@ In [5]: next(i)
StopIteration:
```
-Many functions, like `map`, `functools.reduce`, `itertools.product` etc, returns iterator:
+Many functions, such as `map`, `functools.reduce`, `itertools.product` etc, return iterator:
```python
In [14]: m = map(str, range(3))
@@ -48,7 +48,7 @@ Out[16]: