Skip to content

Commit 0c4e0d5

Browse files
committed
Typo in coroutines.rst
Typo in line 29, it should be "rather than"
1 parent 0588100 commit 0c4e0d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coroutines.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ We then commonly use it in a ``for`` loop like this:
2626
print(i)
2727
2828
It is fast and does not put a lot of pressure on memory because it
29-
**generates** the values on the fly rather then storing them in a list.
29+
**generates** the values on the fly rather than storing them in a list.
3030
Now, if we use ``yield`` in the above example, more generally, we get a
3131
coroutine. Coroutines consume values which are sent to it. A very basic
3232
example would be a ``grep`` alternative in Python:

0 commit comments

Comments
 (0)