diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-24 12:59:12 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-24 12:59:12 +0000 |
commit | c0c5a66b1f9057869560585670408a3b64523528 (patch) | |
tree | 18399ee24a144f84795843b75974219f5944a584 | |
parent | 26f2972e6cc14b5198456611d023553a813ccb68 (diff) | |
download | perl-c0c5a66b1f9057869560585670408a3b64523528.tar.gz |
typo, doc tweak
p4raw-id: //depot/perl@4438
-rw-r--r-- | lib/attributes.pm | 2 | ||||
-rw-r--r-- | pod/perlop.pod | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/attributes.pm b/lib/attributes.pm index d26872f566..09f355139f 100644 --- a/lib/attributes.pm +++ b/lib/attributes.pm @@ -33,7 +33,7 @@ sub import { @_ > 2 && ref $_[2] or do { require Exporter; goto &Exporter::import; - } + }; my (undef,$home_stash,$svref,@attrs) = @_; my $svtype = uc reftype($svref); diff --git a/pod/perlop.pod b/pod/perlop.pod index 6e65ba35bd..c430dbc48d 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1074,9 +1074,9 @@ this expression: qw(foo bar baz) -is exactly equivalent to the list: +is semantically equivalent to the list: - ('foo', 'bar', 'baz') + 'foo', 'bar', 'baz' Some frequently seen examples: |