Skip to content

Commit

Permalink
Merge pull request #342 from jwilk-forks/spelling
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
lazka committed Feb 24, 2018
2 parents 9a7ab4f + 7f89b4e commit fb068ec
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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

0 comments on commit fb068ec

Please sign in to comment.