summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLilian Besson (Naereen) <lilian.besson@live.fr>2016-11-26 17:19:30 +0000
committerLilian Besson (Naereen) <lilian.besson@live.fr>2016-11-26 17:19:30 +0000
commit193fcfc8f935ef086e42c7d01c5eabdaa13bf301 (patch)
treea2fbdf972e994a43059ca2119c6d796ee4e70606
parenta15c970c8f01ea6e5c62a699f84f2620f08f14d4 (diff)
downloadsix-lbesson/a-small-typing-mistake-on-documentationi-1480180767819.tar.gz
A small typing mistake on documentation/index.rstlbesson/a-small-typing-mistake-on-documentationi-1480180767819
-rw-r--r--documentation/index.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index 0fa0063..dbae80a 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -530,14 +530,14 @@ functionality; its structure mimics the structure of the Python 3
from six.moves.cPickle import loads
- work, six places special proxy objects in in :data:`py3:sys.modules`. These
+ work, six places special proxy objects in :data:`py3:sys.modules`. These
proxies lazily load the underlying module when an attribute is fetched. This
will fail if the underlying module is not available in the Python
interpreter. For example, ``sys.modules["six.moves.winreg"].LoadKey`` would
fail on any non-Windows platform. Unfortunately, some applications try to
load attributes on every module in :data:`py3:sys.modules`. six mitigates
this problem for some applications by pretending attributes on unimportable
- modules don't exist. This hack doesn't work in every case, though. If you are
+ modules do not exist. This hack does not work in every case, though. If you are
encountering problems with the lazy modules and don't use any from imports
directly from ``six.moves`` modules, you can workaround the issue by removing
the six proxy modules::