This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo in perlguts.pod
authorJohn P. Linderman <jpl@research.att.com>
Mon, 28 May 2001 09:35:47 +0000 (05:35 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 28 May 2001 15:31:25 +0000 (15:31 +0000)
Message-Id: <200105281335.JAA27851@raptor.research.att.com>

p4raw-id: //depot/perl@10257

pod/perlguts.pod

index 391cf8a..44f3640 100644 (file)
@@ -1289,7 +1289,7 @@ where C<SP> is the macro that represents the local copy of the stack pointer,
 and C<num> is the number of elements the stack should be extended by.
 
 Now that there is room on the stack, values can be pushed on it using C<PUSHs>
-macro. The values pushed will often need to be "mortal" (See L</Reference Counts and Mortality).
+macro. The values pushed will often need to be "mortal" (See L</Reference Counts and Mortality>).
 
     PUSHs(sv_2mortal(newSViv(an_integer)))
     PUSHs(sv_2mortal(newSVpv("Some String",0)))