mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
Fix some typos
This commit is contained in:
@@ -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**:
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user