1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
Description: fix typos discovered by lintian spell checker
Author: Florian Schlichting <fsfs@debian.org>
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=125649
--- a/lib/Audio/File.pm
+++ b/lib/Audio/File.pm
@@ -22,7 +22,7 @@
=head1 DESCRIPTION
-Audio::File abstracts a single audio file, independant of its format. Using this
+Audio::File abstracts a single audio file, independent of its format. Using this
module you can access a files meta-info like title, album, etc. as well as the
files audio-properties like its length and bitrate.
@@ -79,7 +79,7 @@
=item * better (easier) interface?
-=item * user shouldn't be forced to use Audio::File if he only want's the files
+=item * user shouldn't be forced to use Audio::File if he only wants the files
tag or audio properties.
=item * Add possibility to access raw audio data (Audio::File::Data)
--- a/lib/Audio/File/AudioProperties.pm
+++ b/lib/Audio/File/AudioProperties.pm
@@ -11,16 +11,16 @@
=head1 DESCRIPTION
-Audio::File::AudioProperties is the base class for other file format independant
+Audio::File::AudioProperties is the base class for other file format independent
audio property classes like Audio::File::Flac::AudioProperties or
-Audio::File::Ogg::AudioProperties. You should not use this class yourself exept
-you're writing an own file format dependant subclass.
+Audio::File::Ogg::AudioProperties. You should not use this class yourself except
+if you're writing your own file format dependent subclass.
=head1 METHODS
=head2 new
-Constructor. Creates new Audio::File::AudioProperties object. You shoud not use
+Constructor. Creates new Audio::File::AudioProperties object. You should not use
this method yourself. It's called by the filetype-dependant subclasses of
Audio::File::Type automatically.
--- a/lib/Audio/File/Tag.pm
+++ b/lib/Audio/File/Tag.pm
@@ -11,9 +11,9 @@
=head1 DESCRIPTION
-Audio::File::Tag is the base class for other file format independant tag classes
+Audio::File::Tag is the base class for other file format independent tag classes
like Audio::File::Flac::Tag or Audio::File::Ogg::Tag. You shouldn't use this
-class yourself exept you're writing an own file format dependant subclass.
+class yourself except if you're writing your own file format dependent subclass.
=head1 METHODS
--- a/lib/Audio/File/Type.pm
+++ b/lib/Audio/File/Type.pm
@@ -67,7 +67,7 @@
=head2 is_readable
Checks whether the file is readable or not. At the moment it's only used by the
-constructor, but it will be more usefull with later versions of Audio::File.
+constructor, but it will be more useful with later versions of Audio::File.
=cut
@@ -78,7 +78,7 @@
=head2 is_writeable
Checks whether the file is writeable or not. At the moment you'll probably don't
-need to call this method, but it'll be more usefull as soon as changing the
+need to call this method, but it'll be more useful as soon as changing the
audio file is implemented.
=cut
|