Skip to content

Commit 86f18c6

Browse files
committed
docs: Fix a few typos
There are small typos in: - README.rst - doc/generate_command_reference.py - doc/topics/advanced.rst - doc/topics/commands.rst - doc/topics/getting-started.rst - mpd/asyncio.py - mpd/tests.py Fixes: - Should read `probably` rather than `probablyy`. - Should read `parenthese` rather than `paranthese`. - Should read `omitting` rather than `ommiting`. - Should read `internally` rather than `internaly`. - Should read `incoming` rather than `incmoing`. - Should read `configurable` rather than `configureable`. - Should read `because` rather than `beause`.
1 parent 8a3f5ec commit 86f18c6

7 files changed

+7
-7
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The following features were added:
3333
- API documentation to add new commands (see `Future Compatible <https://python-mpd2.readthedocs.io/en/latest/topics/advanced.html#future-compatible>`__)
3434
- support for Unicode strings in all commands (optionally in python2,
3535
default in python3 - see `Unicode Handling <https://python-mpd2.readthedocs.io/en/latest/topics/advanced.html#unicode-handling>`__)
36-
- configureable timeouts
36+
- configurable timeouts
3737
- support for `logging <https://python-mpd2.readthedocs.io/en/latest/topics/logging.html>`__
3838
- improved support for sticker
3939
- improved support for ranges

doc/generate_command_reference.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_text(elements, itemize=False):
2828
'function'
2929
] + highlight_elements
3030
for element in elements:
31-
# put "Since MPD version..." in paranthese
31+
# put "Since MPD version..." in parenthese
3232
etree.strip_tags(element, "application")
3333
for e in element.xpath("footnote/simpara"):
3434
e.text = "(" + e.text.strip() + ")"

doc/topics/advanced.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ New commands or special handling of commands can be easily implemented. Use
2121
Thread-Safety
2222
-------------
2323

24-
Currently ``MPDClient`` is **NOT** thread-safe. As it use a socket internaly,
24+
Currently ``MPDClient`` is **NOT** thread-safe. As it use a socket internally,
2525
only one thread can send or receive at the time.
2626

2727
But ``MPDClient`` can be easily extended to be thread-safe using `locks

doc/topics/commands.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ Mounts and neighbors
825825

826826
Multiple storages can be "mounted" together, similar to the mount
827827
command on many operating systems, but without cooperation from
828-
the kernel. No superuser privileges are necessary, beause this
828+
the kernel. No superuser privileges are necessary, because this
829829
mapping exists only inside the MPD process
830830

831831
.. function:: MPDClient.mount(path, uri)

doc/topics/getting-started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ by using two element tuple::
6464
'file: song3.mp3',]
6565

6666
Second element can be omitted. MPD will assumes the biggest possible number then (don't forget the comma!)::
67-
NOTE: mpd versions between 0.16.8 and 0.17.3 contains a bug, so ommiting doesn't work.
67+
NOTE: mpd versions between 0.16.8 and 0.17.3 contains a bug, so omitting doesn't work.
6868

6969
>>> client.delete((1,)) # delete all songs, but the first.

mpd/asyncio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ class MPDClient(MPDClientBase):
147147

148148
#: Indicator of whether there is a pending idle command that was not terminated yet.
149149
# When in doubt; this is True, thus erring at the side of caution (because
150-
# a "noidle" being sent while racing against an incmoing idle notification
150+
# a "noidle" being sent while racing against an incoming idle notification
151151
# does no harm)
152152
__in_idle = False
153153

mpd/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def setUp(self):
5151
# Create a new socket.socket() mock with default attributes,
5252
# each time we are calling it back (otherwise, it keeps set
5353
# attributes across calls).
54-
# That's probablyy what we want, since reconnecting is like
54+
# That's probably what we want, since reconnecting is like
5555
# reinitializing the entire connection, and so, the mock.
5656
mock.MagicMock(name="socket.socket")
5757
)

0 commit comments

Comments
 (0)