This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Minor doc fix: pp_addr => op_ppaddr
authorSteffen Mueller <smueller@cpan.org>
Thu, 14 Feb 2013 16:36:54 +0000 (17:36 +0100)
committerSteffen Mueller <smueller@cpan.org>
Thu, 14 Feb 2013 16:37:13 +0000 (17:37 +0100)
pod/perlguts.pod

index 79c1bbb..0738938 100644 (file)
@@ -2834,7 +2834,7 @@ tree using a C<CHECK> block and the C<B::Generate> module, or by adding
 a custom peephole optimizer with the C<optimize> module.
 
 When you do this, you replace ordinary Perl ops with custom ops by
-creating ops with the type C<OP_CUSTOM> and the C<pp_addr> of your own
+creating ops with the type C<OP_CUSTOM> and the C<op_ppaddr> of your own
 PP function. This should be defined in XS code, and should look like
 the PP ops in C<pp_*.c>. You are responsible for ensuring that your op
 takes the appropriate number of values from the stack, and you are