Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #342

Merged
merged 1 commit into from Feb 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion NEWS
Expand Up @@ -634,7 +634,7 @@
* Bug Fixes:

* FLAC: Raise IOError, instead of UnboundLocalError, when trying
to open a non-existant file. (Lukáš Lalinský, Debian #448734)
to open a non-existent file. (Lukáš Lalinský, Debian #448734)
* Throw out invalid frames when upgrading from 2.3 to 2.4.
* Fixed reading of Unicode strings from ASF files on big-endian
platforms.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -66,7 +66,7 @@ own.
considered from the start and are fully supported.
* All ID3v2 versions and all ID3v2.4 frames are covered, including rare ones
like POPM or RVA2.
* We take automated testing very seriously. All bug fixes are commited with a
* We take automated testing very seriously. All bug fixes are committed with a
test that prevents them from recurring, and new features are committed with
a full test suite.

Expand Down
2 changes: 1 addition & 1 deletion docs/user/classes.rst
Expand Up @@ -40,7 +40,7 @@ It provides a dict-like interface which acts as a proxy to the containing
Tags
----

Each FileType has a attributes tags which holds a :class:`Tags` instance. The
Each FileType has an attribute tags which holds a :class:`Tags` instance. The
Tags interface depends mostly on each format. It exposes a dict-like interface
where the type of keys and values depends on the implementation of each
format.
Expand Down
2 changes: 1 addition & 1 deletion docs/user/id3.rst
Expand Up @@ -16,7 +16,7 @@ the title of an ID3 tag, you need to do the following::
audio.save()

If you use the ID3 module, you should familiarize yourself with how
ID3v2 tags are stored, by reading the the details of the ID3v2
ID3v2 tags are stored, by reading the details of the ID3v2
standard at http://id3.org/id3v2.4.0-structure.

ID3 Dict Interface
Expand Down
2 changes: 1 addition & 1 deletion tests/test_flac.py
Expand Up @@ -572,7 +572,7 @@ class TFLACFile(TestCase):

def test_open_nonexistant(self):
"""mutagen 1.2 raises UnboundLocalError, then it tries to open
non-existant FLAC files"""
non-existent FLAC files"""
filename = os.path.join(DATA_DIR, "doesntexist.flac")
self.assertRaises(MutagenError, FLAC, filename)

Expand Down