Fix some typos

This commit is contained in:
Martin Michlmayr
2019-05-13 15:49:04 +08:00
parent e113bad35b
commit 69277aa1f5
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -643,7 +643,7 @@ Never use a list comprehension just for its side effects.
.. code-block:: python
[print(x) for x in seqeunce]
[print(x) for x in sequence]
**Good**: