diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 06:36:46 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 06:36:46 +0000 |
commit | 657b208b434818aa5e54d68b0a8ad320c0252adf (patch) | |
tree | 4401717ed5a673623e6e7463374901e296af48fc /lib/bytes_heavy.pl | |
parent | 8058d7abf600e878367b422ec507695e4ac6f25a (diff) | |
download | perl-657b208b434818aa5e54d68b0a8ad320c0252adf.tar.gz |
s/byte/bytes/g remnants
p4raw-id: //depot/perl@5134
Diffstat (limited to 'lib/bytes_heavy.pl')
-rw-r--r-- | lib/bytes_heavy.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bytes_heavy.pl b/lib/bytes_heavy.pl index ec0558561d..47bdbf91b0 100644 --- a/lib/bytes_heavy.pl +++ b/lib/bytes_heavy.pl @@ -1,7 +1,7 @@ -package byte; +package bytes; sub length ($) { - BEGIN { byte::import() } + BEGIN { bytes::import() } return CORE::length($_[0]); } |