[svn:parrot] r36700 - branches/update_pod/t/doc

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Fri Feb 13 23:58:18 UTC 2009


Author: jkeenan
Date: Fri Feb 13 23:58:16 2009
New Revision: 36700
URL: https://trac.parrot.org/parrot/changeset/36700

Log:
No need for 'our' variables where 'my' will suffice.

Modified:
   branches/update_pod/t/doc/pod.t

Modified: branches/update_pod/t/doc/pod.t
==============================================================================
--- branches/update_pod/t/doc/pod.t	Fri Feb 13 23:29:44 2009	(r36699)
+++ branches/update_pod/t/doc/pod.t	Fri Feb 13 23:58:16 2009	(r36700)
@@ -14,8 +14,6 @@
     identify_files_for_POD_testing
 );
 
-our (@failed_syntax, @empty_description);
-
 BEGIN {
     eval 'use Pod::Simple';
     if ($@) {
@@ -49,6 +47,8 @@
     second_analysis => \&second_analysis,
 } );
 
+my (@failed_syntax, @empty_description);
+
 foreach my $file ( @{ $need_testing_ref } ) {
     # skip files with valid POD
     if (file_pod_ok($file)) {


More information about the parrot-commits mailing list