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**:
+1 -1
View File
@@ -201,7 +201,7 @@ the unittest module!
Hypothesis
----------
Hypothesis is a library which lets you write tests that are parametrized by
Hypothesis is a library which lets you write tests that are parameterized by
a source of examples. It then generates simple and comprehensible examples
that make your tests fail, letting you find more bugs with less work.