Fixed typos
authorPascal Borreli <pascal@borreli.com>
Mon, 1 Apr 2013 15:02:37 +0000 (15:02 +0000)
committerPascal Borreli <pascal@borreli.com>
Mon, 1 Apr 2013 18:02:18 +0000 (18:02 +0000)
docs/dev/todo.rst
docs/user/advanced.rst
requests/auth.py
requests/models.py

index a68d47040320f84dd90a9bde1319375fad955e6d..38378293bf476cb7b355a6725531dd21358c708a 100644 (file)
@@ -6,7 +6,7 @@ Requests is under active development, and contributions are more than welcome!
 #. Check for open issues or open a fresh issue to start a discussion around a bug.
    There is a Contributor Friendly tag for issues that should be ideal for people who are not very
    familiar with the codebase yet.
-#. Fork `the repository <https://github.com/kennethreitz/requests>`_ on Github andstart making your
+#. Fork `the repository <https://github.com/kennethreitz/requests>`_ on Github and start making your
    changes to a new branch.
 #. Write a test which shows that the bug was fixed.
 #. Send a pull request and bug the maintainer until it gets merged and published. :)
@@ -46,7 +46,7 @@ Requests currently supports the following versions of Python:
 
 Support for Python 3.1 and 3.2 may be dropped at any time.
 
-Google App Engine will never be officially supported. Pull requests for compatiblity will be accepted, as long as they don't complicate the codebase.
+Google App Engine will never be officially supported. Pull requests for compatibility will be accepted, as long as they don't complicate the codebase.
 
 
 Are you crazy?
index 33bb6f6d19d73bbfe0d92422ec368ae049fcc149..d8c142c9a8a942405e696b0d1e7edc5a195b1b03 100644 (file)
@@ -93,7 +93,7 @@ I don't have SSL setup on this domain, so it fails. Excellent. Github does thoug
 
 You can also pass ``verify`` the path to a CA_BUNDLE file for private certs. You can also set the ``REQUESTS_CA_BUNDLE`` environment variable.
 
-Requests can also ignore verifying the SSL certficate if you set ``verify`` to False.
+Requests can also ignore verifying the SSL certificate if you set ``verify`` to False.
 
 ::
 
index 805f2400da2443fd0ed037de09617a3dd7440f0e..0da8bcde5e064e55860fb6ee7f05981e56e796d4 100644 (file)
@@ -49,7 +49,7 @@ class HTTPBasicAuth(AuthBase):
 
 
 class HTTPProxyAuth(HTTPBasicAuth):
-    """Attaches HTTP Proxy Authenetication to a given Request object."""
+    """Attaches HTTP Proxy Authentication to a given Request object."""
     def __call__(self, r):
         r.headers['Proxy-Authorization'] = _basic_auth_str(self.username, self.password)
         return r
index 6ed2b599467f4f87e8977716ab6659073c2df47a..150dca1e2ca7e72e08d4eb326db75a2b8931d344 100644 (file)
@@ -60,7 +60,7 @@ class RequestEncodingMixin(object):
         """Encode parameters in a piece of data.
 
         Will successfully encode parameters when passed as a dict or a list of
-        2-tuples. Order is retained if data is a list of 2-tuples but abritrary
+        2-tuples. Order is retained if data is a list of 2-tuples but arbitrary
         if parameters are supplied as a dict.
         """