Small code cleanup
Dave Rolsky [Sat, 14 Mar 2009 18:12:19 +0000 (13:12 -0500)]
xt/pod_spell.t

index 71a8a61..e6a543c 100644 (file)
@@ -1,10 +1,15 @@
+use strict;
+use warnings;
+
 use Test::Spelling;
+
 my @stopwords;
 for (<DATA>) {
     chomp;
     push @stopwords, $_
-      unless /\A (?: \# | \s* \z)/msx;    # skip comments, whitespace
-};
+        unless /\A (?: \# | \s* \z)/msx;    # skip comments, whitespace
+}
+
 add_stopwords(@stopwords);
 set_spell_cmd('aspell list -l en');
 all_pod_files_spelling_ok;