Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ea12657

Browse filesBrowse files
author
Kenneth Reitz
committed
Merge pull request realpython#226 from MarkyV/master
Fixed some type-os
2 parents a31384a + be9a256 commit ea12657
Copy full SHA for ea12657

File tree

Expand file treeCollapse file tree

6 files changed

+7
-7
lines changed
Filter options
Expand file treeCollapse file tree

6 files changed

+7
-7
lines changed

‎docs/contents.rst.inc

Copy file name to clipboardExpand all lines: docs/contents.rst.inc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ background information about Python, then focuses on next steps.
101101

102102
--------------------------------------
103103

104-
Contibution notes and legal information are here (for those interested).
104+
Contribution notes and legal information are here (for those interested).
105105

106106
.. toctree::
107107
:maxdepth: 2

‎docs/scenarios/admin.rst

Copy file name to clipboardExpand all lines: docs/scenarios/admin.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The following command lists all available minion hosts, using the ping module.
9191
9292
$ salt '*' test.ping
9393
94-
The host filtering is acomplished by matching the minion id, or using the grains system.
94+
The host filtering is accomplished by matching the minion id, or using the grains system.
9595
The `grains <http://docs.saltstack.org/en/latest/topics/targeting/grains.html>`_ system
9696
uses static host information like the operating system version or the CPU architecture to
9797
provide a host taxonomy for the salt modules.

‎docs/scenarios/gui.rst

Copy file name to clipboardExpand all lines: docs/scenarios/gui.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Gtk
4040
---
4141
PyGTK provides Python bindings for the GTK+ toolkit. Like the GTK+ library
4242
itself, it is currently licensed under the GNU LGPL. It is worth noting that
43-
PyGTK only currenty supports the Gtk-2.X API (NOT Gtk-3.0). It is currently
43+
PyGTK only currently supports the Gtk-2.X API (NOT Gtk-3.0). It is currently
4444
recommended that PyGTK is not used for new projects and existing applications
4545
be ported from PyGTK to PyGObject.
4646

‎docs/scenarios/speed.rst

Copy file name to clipboardExpand all lines: docs/scenarios/speed.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The GIL
4242

4343
`The GIL`_ (Global Interpreter Lock) is how Python allows multiple threads to
4444
operate at the same time. Python's memory management isn't entirely thread-safe,
45-
so the GIL is requried to prevents multiple threads from running the same
45+
so the GIL is required to prevents multiple threads from running the same
4646
Python code at once.
4747

4848
David Beazley has a great `guide`_ on how the GIL operates. He also covers the
@@ -51,7 +51,7 @@ Python application requires a strong understanding of the GIL, how it affects
5151
your specific application, how many cores you have, and where your application
5252
bottlenecks are.
5353

54-
C Extentions
54+
C Extensions
5555
------------
5656

5757

‎docs/writing/style.rst

Copy file name to clipboardExpand all lines: docs/writing/style.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ clearer construct is sufficient to express the function's intention.
151151
It is up to the programmer writing the function to determine which arguments
152152
are positional arguments and which are optional keyword arguments, and to
153153
decide whether to use the advanced techniques of arbitrary argument passing. If
154-
the advices above are followed wisely, it is possible and enjoyable to write
154+
the advice above is followed wisely, it is possible and enjoyable to write
155155
Python functions that are:
156156

157157
* easy to read (the name and arguments need no explanations)

‎docs/writing/tests.rst

Copy file name to clipboardExpand all lines: docs/writing/tests.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ always returns the same result (but only for the duration of the test).
290290
# get_search_results runs a search and iterates over the result
291291
self.assertEqual(len(myapp.get_search_results(q="fish")), 3)
292292

293-
Mock has many other ways you can configure it and control its behaviour.
293+
Mock has many other ways you can configure it and control its behavior.
294294

295295
`mock <http://www.voidspace.org.uk/python/mock/>`_
296296

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.