aboutsummaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.markdown b/README.markdown
index 7417110..91432c9 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
# VERSION
-Version 0.04
+Version 0.05
# DESCRIPTION
@@ -27,7 +27,8 @@ For details on the LRC file format, please see Wikipedia:
my $tags = $lrc->tags(); # hashref, name => value
...
$lrc->add_lyric(5500, q(Now I'm singin' at exactly 5.5 seconds...));
- $lrc->add_tag('author', 'Justin A. Perlhacker');
+ $lrc->set_tag('author', 'Justin A. Perlhacker');
+ $lrc->unset_tag('author');
...
open my $wfh, '>', 'savelyrics.lrc';
$lrc->save($wfh);
@@ -67,7 +68,7 @@ Retrieve a hashref of tag names to tag values for this lyrics file.
## `add_lyric($time, $text)`
-Add a lyric at the given non-negative time in millseconds and with the given
+Add a lyric at the given non-negative time in milliseconds and with the given
text. The text must not include newlines or carriage returns.
## `set_tag($name, $value)`