aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-06 15:57:52 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-06 15:57:52 +1300
commitde64f41f2f3f778a954b549a18f3b19ce8d38486 (patch)
tree9bcd696ff2edd55422adea59958ef7b7d1ac6521
parentMerge branch 'feature/ignore-tags' into develop (diff)
downloadMusic-Lyrics-LRC-de64f41f2f3f778a954b549a18f3b19ce8d38486.tar.gz
Music-Lyrics-LRC-de64f41f2f3f778a954b549a18f3b19ce8d38486.zip
Rearrange `use` statements
-rw-r--r--lib/Music/Lyrics/LRC.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 5a83cfc..e9cf314 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -5,13 +5,13 @@ use strict;
use warnings;
use utf8;
+# Target reasonably old Perl
+use 5.006;
+
# Include required modules
use Carp;
use English '-no_match_vars';
-# Target reasonably old Perl
-use 5.006;
-
# Declare package version
our $VERSION = '0.09';