This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlhacktips: Fix pod formatting
authorFather Chrysostomos <sprout@cpan.org>
Mon, 18 Nov 2013 14:12:03 +0000 (06:12 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 18 Nov 2013 16:29:33 +0000 (08:29 -0800)
pod/perlhacktips.pod

index 9e76281..d9db686 100644 (file)
@@ -886,7 +886,7 @@ if you want to only break at certain iterations:
 =head2 Using gdb to look at what the parser/lexer are doing
 
 If you want to see what perl is doing when parsing/lexing your code, you can 
-use C<<BEGIN {}>>:
+use C<BEGIN {}>:
 
     print "Before\n";
     BEGIN { study; }