typo, doc tweak
Gurusamy Sarathy [Sun, 24 Oct 1999 12:59:12 +0000 (12:59 +0000)]
p4raw-id: //depot/perl@4438

lib/attributes.pm
pod/perlop.pod

index d26872f..09f3551 100644 (file)
@@ -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);
index 6e65ba3..c430dbc 100644 (file)
@@ -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: