Skip to content

Commit aa25ef5

Browse files
committed
merge upstream
2 parents 5da8f3e + c7f1da2 commit aa25ef5

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-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/style.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
.. code_style:
1+
.. _code_style:
2+
23
Code Style
34
==========
45

@@ -456,7 +457,7 @@ list of what is considered false.
456457
if not attr:
457458
print 'attr is falsey!'
458459
459-
# or, since None is considered false, explicity check for it
460+
# or, since None is considered false, explicitly check for it
460461
if attr is None:
461462
print 'attr is None!'
462463

0 commit comments

Comments
 (0)