diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-03-19 15:21:37 +0200 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-03-19 16:32:16 +0000 |
commit | abc0156ba8cc024916c0d1e664c4488f0cbc55c8 (patch) | |
tree | 553d629af82a113a4c8b6f91acb093394fa93c06 /lib/English.pm | |
parent | 9061c4b923969fe4301d8ee29f5fc13aad24f9f7 (diff) | |
download | perl-abc0156ba8cc024916c0d1e664c4488f0cbc55c8.tar.gz |
a bit 'use strict' cleanliness
Message-ID: <441D3EC1.20902@gmail.com>
p4raw-id: //depot/perl@27541
Diffstat (limited to 'lib/English.pm')
-rw-r--r-- | lib/English.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/English.pm b/lib/English.pm index eea7d2a653..c11fbed9eb 100644 --- a/lib/English.pm +++ b/lib/English.pm @@ -3,7 +3,7 @@ package English; our $VERSION = '1.04'; require Exporter; -@ISA = (Exporter); +@ISA = qw(Exporter); =head1 NAME |