From 54f1d8ca4ddb54217f6e06b1e2db477c70425813 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Mon, 1 Apr 2013 19:09:15 +0000 Subject: [PATCH] Fixed typos --- docs/_themes/README.rst | 2 +- docs/scenarios/client.rst | 2 +- docs/shipping/freezing.rst | 2 +- docs/writing/gotchas.rst | 2 +- docs/writing/style.rst | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/_themes/README.rst b/docs/_themes/README.rst index 8648482..2e875d4 100644 --- a/docs/_themes/README.rst +++ b/docs/_themes/README.rst @@ -2,7 +2,7 @@ krTheme Sphinx Style ==================== This repository contains sphinx styles Kenneth Reitz uses in most of -his projects. It is a drivative of Mitsuhiko's themes for Flask and Flask related +his projects. It is a derivative of Mitsuhiko's themes for Flask and Flask related projects. To use this style in your Sphinx documentation, follow this guide: diff --git a/docs/scenarios/client.rst b/docs/scenarios/client.rst index b9cd402..8a4fdde 100644 --- a/docs/scenarios/client.rst +++ b/docs/scenarios/client.rst @@ -24,7 +24,7 @@ your URLs, or to form-encode your POST data. Keep-alive and HTTP connection pooling are 100% automatic, powered by urllib3, which is embedded within Requests. -- `Documention `_ +- `Documentation `_ - `PyPi `_ - `GitHub `_ diff --git a/docs/shipping/freezing.rst b/docs/shipping/freezing.rst index 59f97e8..2722c12 100644 --- a/docs/shipping/freezing.rst +++ b/docs/shipping/freezing.rst @@ -74,7 +74,7 @@ Prerequisite is to install :ref:`Python on Windows `. $ python setup.py py2exe -6. Provide the Microsoft Visual C runtime DLL. Two options: `globally install dll on target machine `_ or `distribute dll aloneside with .exe `_. +6. Provide the Microsoft Visual C runtime DLL. Two options: `globally install dll on target machine `_ or `distribute dll alongside with .exe `_. PyInstaller ~~~~~~~~~~~ diff --git a/docs/writing/gotchas.rst b/docs/writing/gotchas.rst index 1fa23e5..9f389bf 100644 --- a/docs/writing/gotchas.rst +++ b/docs/writing/gotchas.rst @@ -152,7 +152,7 @@ What You Should Do Instead ~~~~~~~~~~~~~~~~~~~~~~~~~~ Well. Here the general solution is arguably a bit of a hack. Due to Python's -afformentioned behavior concerning evaluating default arguments to functions +aforementioned behavior concerning evaluating default arguments to functions (see :ref:`default_args`), you can create a closure that binds immediately to its arguments by using a default arg like so: diff --git a/docs/writing/style.rst b/docs/writing/style.rst index dcfd145..28d9ec4 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -456,7 +456,7 @@ list of what is considered false. if not attr: print 'attr is falsey!' - # or, since None is considered false, explicity check for it + # or, since None is considered false, explicitly check for it if attr is None: print 'attr is None!'