summaryrefslogtreecommitdiff
path: root/docs/user-guide.rst
diff options
context:
space:
mode:
authorJon Wayne Parrott <jon.wayne.parrott@gmail.com>2016-06-14 12:37:37 -0700
committerJon Wayne Parrott <jon.wayne.parrott@gmail.com>2016-06-28 09:50:45 -0700
commit950cbf997e97153e0e6e8ed667ff37cf826e5fa4 (patch)
treee477241f1e7748b4442f33f196b6f938077124d7 /docs/user-guide.rst
parentb3574581a2a6d011783d7dbbe22f890864f83097 (diff)
downloadurllib3-950cbf997e97153e0e6e8ed667ff37cf826e5fa4.tar.gz
Urllib3 -> urllib3
Diffstat (limited to 'docs/user-guide.rst')
-rw-r--r--docs/user-guide.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/user-guide.rst b/docs/user-guide.rst
index 960e2fc6..7405a381 100644
--- a/docs/user-guide.rst
+++ b/docs/user-guide.rst
@@ -6,7 +6,7 @@ User Guide
Making requests
---------------
-First things first, import the Urllib3 module::
+First things first, import the urllib3 module::
>>> import urllib3
@@ -318,7 +318,7 @@ certificates when performing requests::
... ca_certs=certifi.where())
If you do not wish to use pyOpenSSL, you can simply omit the call to
-:func:`urllib3.contrib.pyopenssl.inject_into_urllib3`. Urllib3 will fall back
+:func:`urllib3.contrib.pyopenssl.inject_into_urllib3`. urllib3 will fall back
to the standard-library :mod:`ssl` module. You may experience
:ref:`several warnings <ssl_warnings>` when doing this.
@@ -353,7 +353,7 @@ for more information.
SSL Warnings
~~~~~~~~~~~~
-Urllib3 will issue several different warnings based on the level of certificate
+urllib3 will issue several different warnings based on the level of certificate
verification support. These warning indicate particular situations and can
resolved in different ways.
@@ -435,7 +435,7 @@ You still override this pool-level timeout by specifying ``timeout`` to
Retrying requests
-----------------
-Urllib3 can automatically retry idempotent requests. This same mechanism also
+urllib3 can automatically retry idempotent requests. This same mechanism also
handles redirects. You can control the retries using the ``retries`` parameter
to :meth:`~poolmanager.PoolManager.request`. By default, urllib3 will retry
requests 3 times and follow up to 3 redirects.
@@ -505,5 +505,5 @@ standard logger interface to change the log level for urllib3's logger::
Errors & Exceptions
-------------------
-Urllib3 wraps lower-level exceptions. See :mod:`~urllib3.exceptions` for
+urllib3 wraps lower-level exceptions. See :mod:`~urllib3.exceptions` for
the full list of all exceptions.