Typos, nits and some 80w fixes
authorjbergstroem <bugs@bergstroem.nu>
Tue, 23 Aug 2011 09:37:51 +0000 (11:37 +0200)
committerjbergstroem <bugs@bergstroem.nu>
Tue, 23 Aug 2011 09:37:51 +0000 (11:37 +0200)
docs/community/faq.rst
docs/community/updates.rst
docs/user/advanced.rst
docs/user/install.rst
docs/user/intro.rst
docs/user/quickstart.rst

index b09219562152de7d956b8fcd6a59538fb63fdf1b..b6efc7862e57fa749f78601ae03d06b7e2d81f0d 100644 (file)
@@ -11,7 +11,7 @@ Encoded Data?
 Requests automatically decompresses gzip-encoded responses, and does
 it's best to decodes response content to unicode when possible.
 
-You can get direct access to the raw reasponse (and even the socket),
+You can get direct access to the raw response (and even the socket),
 if needed as well.
 
 
@@ -22,7 +22,6 @@ Requests allows you to easily override User-Agent strings, along with
 any other HTTP Header.
 
 
-
 Why not Httplib2?
 -----------------
 
index 942ccac197d846462d13025af65683e07f422ea5..e6e1559fed5ff487f6160ced0d27ff449f132026 100644 (file)
@@ -20,7 +20,6 @@ I often tweet about new features and releases of Requests.
 Follow `@kennethreitz <https://twitter.com/kennethreitz>`_ for updates.
 
 
-
 Mailing List
 ------------
 
index d145da21ef502f718dbc4c58a36d7686ae8a573c..ae7827c93e209735c08bd88bdd48e75c0b80d620 100644 (file)
@@ -66,7 +66,7 @@ Available hooks:
 
 You can assign a hook function on a per-request basis by passing a
 ``{hook_name: callback_function}`` dictionary to the ``hooks`` request
-paramaeter::
+parameter::
 
     hooks=dict(args=print_url)
 
@@ -134,4 +134,4 @@ To do so, just configure Requests with a stream to write to::
     >>> requests.settings.verbose = sys.stderr
     >>> requests.get('http://httpbin.org/headers')
     2011-08-17T03:04:23.380175   GET   http://httpbin.org/headers
-    <Response [200]>
\ No newline at end of file
+    <Response [200]>
index cdc6d86ceab6137025e9a7132d4bfac8555c034a..dc4aa627cdf1dd69e0d344ccd76a73ee0dc57108 100644 (file)
@@ -3,7 +3,8 @@
 Installation
 ============
 
-This part of the documentation covers the installation of Requests. The first step to using any software package is getting it properly installed.
+This part of the documentation covers the installation of Requests.
+The first step to using any software package is getting it properly installed.
 
 
 Distribute & Pip
@@ -24,7 +25,8 @@ But, you really `shouldn't do that <http://www.pip-installer.org/en/latest/index
 Cheeseshop Mirror
 -----------------
 
-If the Cheeseshop is down, you can also install Requests from Kenneth Reitz's personal `Cheeseshop mirror <http://pip.kreitz.co/>`_::
+If the Cheeseshop is down, you can also install Requests from Kenneth Reitz's
+personal `Cheeseshop mirror <http://pip.kreitz.co/>`_::
 
     $ pip install -i http://pip.kreitz.co/simple requests
 
@@ -48,6 +50,7 @@ Or, download the `zipball <https://github.com/kennethreitz/requests/zipball/mast
     $ curl -O https://github.com/kennethreitz/requests/zipball/master
 
 
-Once you have a copy of the source, you can embed it in your Python package, or install it into your site-packages easily::
+Once you have a copy of the source, you can embed it in your Python package,
+or install it into your site-packages easily::
 
     $ python setup.py install
index 217cb81c8a08007238d955aeedf12e167cdf544d..9837fa146dfdcb128bb6582b2acd462ada3b6139 100644 (file)
@@ -21,10 +21,16 @@ All contributions to Requests should keep these important rules in mind.
 ISC License
 -----------
 
+A large number of open source projects you find today are `GPL Licensed`_.
+While the GPL has its time and place, it should most certainly not be your
+go-to license for your next open source project.
 
-A large number of open source projects you find today are `GPL Licensed`_. While the GPL has its time and place, it should most certainly not be your go-to license for your next open source project.
+A project that is released as GPL cannot be used in any commercial product
+without the product itself also being offered as open source.
 
-A project that is released as GPL cannot be used in any commercial product without the product itself also being offered as open source. The MIT, BSD, ISC, and Apache2 licenses are great alternatives to the GPL that allow your open-source software to be used freely in proprietary, closed-source software.
+The MIT, BSD, ISC, and Apache2 licenses are great alternatives to the GPL
+that allow your open-source software to be used freely in proprietary,
+closed-source software.
 
 Requests is released under terms of `The ISC License`_.
 
@@ -61,4 +67,4 @@ At this time, the following Python platforms are officially supported:
 * PyPy-c 1.5
 
 
-Support for Python 3.x is planned.
\ No newline at end of file
+Support for Python 3.x is planned.
index f9370f5910a22d8d5a679e6f0baea4006fb22342..7ec7593d2ca47e8352342e7e0ce59781344d50e6 100644 (file)
@@ -5,7 +5,9 @@ Quickstart
 
 .. module:: requests.models
 
-Eager to get started? This page gives a good introduction in how to get started with Requests. This assumes you already have Requests installed. If you do not, head over to the :ref:`Installation <install>` section.
+Eager to get started? This page gives a good introduction in how to get started
+with Requests. This assumes you already have Requests installed. If you do not,
+head over to the :ref:`Installation <install>` section.
 
 First, make sure that:
 
@@ -25,7 +27,8 @@ Let's get GitHub's public timeline ::
 
     r = requests.get('https://github.com/timeline.json')
 
-Now, we have a :class:`Response` object called ``r``. We can get all the information we need from this.
+Now, we have a :class:`Response` object called ``r``. We can get all the
+information we need from this.
 
 
 Response Content
@@ -90,7 +93,8 @@ interface::
         'content-type': 'application/json; charset=utf-8'
     }
 
-The dictionary is special, though: it's made just for HTTP headers. According to `RFC 2616 <http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html>`_, HTTP
+The dictionary is special, though: it's made just for HTTP headers. According to
+`RFC 2616 <http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html>`_, HTTP
 Headers are case-insensitive.
 
 So, we can access the headers using any capitalization we want::
@@ -118,7 +122,7 @@ If a response contains some Cookies, you can get quick access to them::
     >>> print r.cookies
     {'requests-is': 'awesome'}
 
-The underlying CookieJar is also available for more advanced handing::
+The underlying CookieJar is also available for more advanced handling::
 
     >>> r.request.cookiejar
     <cookielib.CookieJar>