This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
add a missing C<...> to perldelta
authorRicardo Signes <rjbs@cpan.org>
Fri, 20 Apr 2012 17:40:31 +0000 (13:40 -0400)
committerRicardo Signes <rjbs@cpan.org>
Fri, 20 Apr 2012 17:40:31 +0000 (13:40 -0400)
thanks for the report, James Aitken!

Porting/perl5160delta.pod

index aee6229..cf22e96 100644 (file)
@@ -829,7 +829,7 @@ caching of C<< $< >>, C<< $> >>, C<$(> and C<$)> has been removed.
 
 When we cached these values our idea of what they were would drift out
 of sync with reality if someone (e.g., someone embedding perl) called
-sete?[ug]id() without updating C<PL_e?[ug]id>.  Having to deal with
+C<sete?[ug]id()> without updating C<PL_e?[ug]id>.  Having to deal with
 this complexity wasn't worth it given how cheap the C<gete?[ug]id()>
 system call is.