Skip to content

Commit b4b7c23

Browse files
authored
Merge pull request #113 from barbarossa22/master
Fix minor typos in the text
2 parents 6e95e25 + 2d0ee17 commit b4b7c23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/maintainability/from_module_import_all_used.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In these cases, use one of these idioms:
4444
# or
4545
4646
import multiprocessing as mp
47-
pool = mp.pool(8)
47+
pool = mp.Pool(8)
4848
4949
5050
References

docs/readability/test_for_object_identity_should_be_is_not.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Test for object identity should be ``is``
22
========================================
33

44
Testing the identity of two objects can be achieved in python with a special operator called ``is``.
5-
Most prominently it is used to check whether an variable points to ``None``.
5+
Most prominently it is used to check whether a variable points to ``None``.
66
But the operator can examine any kind of identity.
77
This often leads to confusion because equality of two different objects will return ``False``.
88

0 commit comments

Comments
 (0)