diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-22 05:10:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-22 05:10:53 +0000 |
commit | 92c2ed055315fc5be2c58f97c40236945f31f32e (patch) | |
tree | ccace68daba971343b831dfc0ce5fd0e0647e385 /pod/perlfaq7.pod | |
parent | 407eff0f25e20d3ed6ccfe2097b366fd28d8e3c4 (diff) | |
download | perl-92c2ed055315fc5be2c58f97c40236945f31f32e.tar.gz |
perlfaq update from From Tom Christiansen and Nathan Torkington
(removes all mention of training courses from perlfaq*.pod)
p4raw-id: //depot/perl@1621
Diffstat (limited to 'pod/perlfaq7.pod')
-rw-r--r-- | pod/perlfaq7.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index 2218c12685..e1bccc883f 100644 --- a/pod/perlfaq7.pod +++ b/pod/perlfaq7.pod @@ -344,7 +344,7 @@ reference to an existing or anonymous variable or function: func( \$some_scalar ); - func( \$some_array ); + func( \$some_array ); func( [ 1 .. 10 ] ); func( \%some_hash ); @@ -766,7 +766,7 @@ that includes the kind of object you were called on (which is not necessarily the same as the one in which you were compiled): sub amethod { - my $self = shift; + my $self = shift; my $class = ref($self) || $self; warn "called me from a $class object"; } |