From ad0655346e3e9f0011e7cd035fb0090c4e7e7278 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 5 Mar 2018 17:49:31 +1300 Subject: Correct fatal error in example code The package name was completely wrong. --- README.markdown | 4 ++-- lib/Music/Lyrics/LRC.pm | 4 ++-- 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. This specifies whether the module will C 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 -- cgit v1.2.3