From: Gurusamy Sarathy Date: Sun, 24 Oct 1999 12:59:12 +0000 (+0000) Subject: typo, doc tweak X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c0c5a66b1f9057869560585670408a3b64523528;p=p5sagit%2Fp5-mst-13.2.git typo, doc tweak p4raw-id: //depot/perl@4438 --- diff --git a/lib/attributes.pm b/lib/attributes.pm index d26872f..09f3551 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 6e65ba3..c430dbc 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: