aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-03-05 17:49:31 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-03-05 17:49:31 +1300
commitad0655346e3e9f0011e7cd035fb0090c4e7e7278 (patch)
tree27991dc23b636db53759774adf06e394e8d1904a
parentMerge branch 'hotfix/v0.13' into develop (diff)
downloadMusic-Lyrics-LRC-ad0655346e3e9f0011e7cd035fb0090c4e7e7278.tar.gz
Music-Lyrics-LRC-ad0655346e3e9f0011e7cd035fb0090c4e7e7278.zip
Correct fatal error in example code
The package name was completely wrong.
-rw-r--r--README.markdown4
-rw-r--r--lib/Music/Lyrics/LRC.pm4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.markdown b/README.markdown
index cef641c..7b52292 100644
--- a/README.markdown
+++ b/README.markdown
@@ -41,9 +41,9 @@ Constructor method. Accepts a hash with one attribute `verbose`. This
specifies whether the module will `warn` explicitly when it cannot parse an
input line from a file. It defaults to 0.
- my $lrc = MRC::Lyrics::LRC->new();
+ my $lrc = Music::Lyrics::LRC->new();
...
- my $lrc_verbose = MRC::Lyrics::LRC->new(verbose => 1);
+ my $lrc_verbose = Music::Lyrics::LRC->new(verbose => 1);
...
## `lyrics()`
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index c0de459..92c1b9e 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -309,9 +309,9 @@ Constructor method. Accepts a hash with one attribute C<verbose>. This
specifies whether the module will C<warn> explicitly when it cannot parse an
input line from a file. It defaults to 0.
- my $lrc = MRC::Lyrics::LRC->new();
+ my $lrc = Music::Lyrics::LRC->new();
...
- my $lrc_verbose = MRC::Lyrics::LRC->new(verbose => 1);
+ my $lrc_verbose = Music::Lyrics::LRC->new(verbose => 1);
...
=head2 C<lyrics()>