This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
383fb79
)
perlreapi: use parent in example, not base
author
Ricardo Signes
<rjbs@cpan.org>
Mon, 9 Sep 2013 02:26:10 +0000
(22:26 -0400)
committer
Ricardo Signes
<rjbs@cpan.org>
Thu, 12 Sep 2013 23:49:17 +0000
(19:49 -0400)
pod/perlreapi.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlreapi.pod
b/pod/perlreapi.pod
index
cfc41d7
..
9030e0d
100644
(file)
--- a/
pod/perlreapi.pod
+++ b/
pod/perlreapi.pod
@@
-418,7
+418,7
@@
doesn't have to modify the value. This is exactly how tied variables
behave in the same situation:
package CaptureVar;
- use
base
'Tie::Scalar';
+ use
parent
'Tie::Scalar';
sub TIESCALAR { bless [] }
sub FETCH { undef }