From: Pascal Borreli Date: Mon, 1 Apr 2013 15:02:37 +0000 (+0000) Subject: Fixed typos X-Git-Tag: v1.2.1~29^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=037b38badb31cd379e985881b8077a4aa148fd58;p=services%2Fpython-requests.git Fixed typos --- diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst index a68d470..3837829 100644 --- a/docs/dev/todo.rst +++ b/docs/dev/todo.rst @@ -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 `_ on Github andstart making your +#. Fork `the repository `_ 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? diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index 33bb6f6..d8c142c 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -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. :: diff --git a/requests/auth.py b/requests/auth.py index 805f240..0da8bcd 100644 --- a/requests/auth.py +++ b/requests/auth.py @@ -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 diff --git a/requests/models.py b/requests/models.py index 6ed2b59..150dca1 100644 --- a/requests/models.py +++ b/requests/models.py @@ -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. """