Skip to content

Commit 54f1d8c

Browse files
committed
Fixed typos
1 parent 7b180cc commit 54f1d8c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/_themes/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ krTheme Sphinx Style
22
====================
33

44
This repository contains sphinx styles Kenneth Reitz uses in most of
5-
his projects. It is a drivative of Mitsuhiko's themes for Flask and Flask related
5+
his projects. It is a derivative of Mitsuhiko's themes for Flask and Flask related
66
projects. To use this style in your Sphinx documentation, follow
77
this guide:
88

docs/scenarios/client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ your URLs, or to form-encode your POST data. Keep-alive and HTTP connection
2424
pooling are 100% automatic, powered by urllib3, which is embedded within
2525
Requests.
2626

27-
- `Documention <http://docs.python-requests.org/en/latest/index.html>`_
27+
- `Documentation <http://docs.python-requests.org/en/latest/index.html>`_
2828
- `PyPi <http://pypi.python.org/pypi/requests>`_
2929
- `GitHub <https://github.com/kennethreitz/requests>`_
3030

docs/shipping/freezing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Prerequisite is to install :ref:`Python on Windows <install-windows>`.
7474

7575
$ python setup.py py2exe
7676

77-
6. Provide the Microsoft Visual C runtime DLL. Two options: `globally install dll on target machine <https://www.microsoft.com/en-us/download/details.aspx?id=29>`_ or `distribute dll aloneside with .exe <http://www.py2exe.org/index.cgi/Tutorial#Step52>`_.
77+
6. Provide the Microsoft Visual C runtime DLL. Two options: `globally install dll on target machine <https://www.microsoft.com/en-us/download/details.aspx?id=29>`_ or `distribute dll alongside with .exe <http://www.py2exe.org/index.cgi/Tutorial#Step52>`_.
7878

7979
PyInstaller
8080
~~~~~~~~~~~

docs/writing/gotchas.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ What You Should Do Instead
152152
~~~~~~~~~~~~~~~~~~~~~~~~~~
153153

154154
Well. Here the general solution is arguably a bit of a hack. Due to Python's
155-
afformentioned behavior concerning evaluating default arguments to functions
155+
aforementioned behavior concerning evaluating default arguments to functions
156156
(see :ref:`default_args`), you can create a closure that binds immediately to
157157
its arguments by using a default arg like so:
158158

docs/writing/style.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ list of what is considered false.
456456
if not attr:
457457
print 'attr is falsey!'
458458
459-
# or, since None is considered false, explicity check for it
459+
# or, since None is considered false, explicitly check for it
460460
if attr is None:
461461
print 'attr is None!'
462462

0 commit comments

Comments
 (0)