aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 00:07:17 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 00:07:17 +1300
commita1924176a79fabad9f3379f9bc3096b251ce5e47 (patch)
treec62c64c0222802646a750d3a934b12ff18273470
parentCorrect variable reference in SYNOPSIS (diff)
downloadMusic-Lyrics-LRC-a1924176a79fabad9f3379f9bc3096b251ce5e47.tar.gz
Music-Lyrics-LRC-a1924176a79fabad9f3379f9bc3096b251ce5e47.zip
Add square brackets to denote arrayref in docs
-rw-r--r--lib/Music/Lyrics/LRC.pm18
1 files changed, 10 insertions, 8 deletions
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index c6287ab..93a5028 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -303,15 +303,17 @@ Constructor; no arguments.
Retrieve an arrayref of hashrefs representing lyric lines, sorted by time
ascending. Each one has C<time> and C<text> keys. The time is in milliseconds.
- {
- time => 5500,
- text => 'Now I\'m singin\' at exactly 5.5 seconds...',
- },
- {
- time => 6001,
- text => 'And now a moment after the sixth...',
- },
+ [
+ {
+ time => 5500,
+ text => 'Now I\'m singin\' at exactly 5.5 seconds...',
+ },
+ {
+ time => 6001,
+ text => 'And now a moment after the sixth...',
+ },
...
+ ]
=head2 C<tags()>