Skip to content

Commit 0058198

Browse files
committed
Merge pull request #578 from tkschmidt/typos
fixed a few typos
2 parents ac3bea4 + 139a967 commit 0058198

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

docs/intro/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ both popular and exotic.
2323
pydoc
2424
-----
2525

26-
:program:`pydoc` is a utlity that is installed when you install Python.
26+
:program:`pydoc` is a utility that is installed when you install Python.
2727
It allows you to quickly retrieve and search for documentation from your
2828
shell. For example, if you needed a quick refresher on the
2929
:mod:`time` module, pulling up documentation would be as simple as

docs/scenarios/admin.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ system. `Puppet Forge <https://forge.puppetlabs.com/>`_ is a repository for
255255
modules written by the community for Open Source and Enterprise Puppet.
256256

257257
Puppet Agents are installed on nodes whose state needs to be monitored or
258-
changed. A desginated server known as the Puppet Master is responsible for
259-
orchastrating the agent nodes.
258+
changed. A designated server known as the Puppet Master is responsible for
259+
orchestrating the agent nodes.
260260

261261
Agent nodes send basic facts about the system such as to the operating system,
262262
kernel, architecture, ip address, hostname etc. to the Puppet Master.

docs/scenarios/gui.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and the mailing list https://groups.google.com/forum/#!forum/project-camelot
1515

1616
Cocoa
1717
-----
18-
.. note:: The Cocoa framework is only available on OS X. Don't pick this if you're writing a cross-platform application!
18+
.. note:: The Cocoa framework is only available on OS X. Don't pick this if you're writing a cross-platform application!
1919

2020
GTk
2121
---

docs/shipping/freezing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Prerequisite is to have installed :ref:`Python, Setuptools and pywin32 dependenc
107107
- `Manual <http://www.pyinstaller.org/export/d3398dd79b68901ae1edd761f3fe0f4ff19cfb1a/project/doc/Manual.html?format=raw>`_
108108

109109

110-
OS X
110+
OS X
111111
----
112112

113113

docs/shipping/packaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The downside of distributing code like this is that it relies on the
2323
recipient understanding how to install the required version of Python,
2424
and being able and willing to use tools such as pip to install your code's
2525
other dependencies. This is fine when distributing to other developers, but
26-
makes this method unsuitable for distributing applications to end-uers.
26+
makes this method unsuitable for distributing applications to end-users.
2727

2828
The `Python Packaging Guide <https://python-packaging-user-guide.readthedocs.org/en/latest/>`_
2929
provides an extensive guide on creating and maintaining Python packages.

docs/starting/pip-virtualenv.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Further Configuration of Pip and Virtualenv
66
Requiring an active virtual environment for ``pip``
77
---------------------------------------------------
88

9-
By now it should be clear that using virtual envirtonments is a great way to
9+
By now it should be clear that using virtual environments is a great way to
1010
keep your development environment clean and keeping different projects'
1111
requirements separate.
1212

@@ -71,7 +71,7 @@ add the following lines to this new file:
7171
7272
7373
You will of course need to install some packages globally (usually ones that
74-
you use across different projects consistenly) and this can be accomplished by
74+
you use across different projects consistently) and this can be accomplished by
7575
adding the following to your :file:`~/.bashrc` file:
7676

7777
.. code-block:: console
@@ -94,7 +94,7 @@ that you use. For example, you may be using the ``requests`` library in a lot
9494
of different projects.
9595

9696
It is surely unnecessary to re-download the same packages/libraries each time
97-
you start working on a new project (and in a new virtual environmen as a result).
97+
you start working on a new project (and in a new virtual environment as a result).
9898
Fortunately, you can configure pip in such a way that it tries to reuse already
9999
installed packages.
100100

docs/writing/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ comment block is a programmer's note. The docstring describes the
141141
"""Returns the square root of self times self."""
142142
...
143143
144-
.. seealso:: Further reading on docstrings: :pep:`257`
144+
.. see also:: Further reading on docstrings: :pep:`257`
145145
146146
147147
Other Tools

docs/writing/style.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Code Style
66
If you ask Python programmers what they like most in Python, they will
77
often say its high readability. Indeed, a high level of readability
88
is at the heart of the design of the Python language, following the
9-
recognised fact that code is read much more often than it is written.
9+
recognized fact that code is read much more often than it is written.
1010

1111
One reason for Python code to be easily read and understood is its relatively
1212
complete set of Code Style guidelines and "Pythonic" idioms.

0 commit comments

Comments
 (0)