diff options
author | John P. Linderman <jpl@research.att.com> | 2001-05-28 05:35:47 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-28 15:31:25 +0000 |
commit | 484ce0c5b70d86f3033b8c1213ab4f606e5ee790 (patch) | |
tree | 708934963f891a361d1ccae4d9d57bf0a730553d | |
parent | b0f9136b66892861f4764ec047f74ef287daf988 (diff) | |
download | perl-484ce0c5b70d86f3033b8c1213ab4f606e5ee790.tar.gz |
typo in perlguts.pod
Message-Id: <200105281335.JAA27851@raptor.research.att.com>
p4raw-id: //depot/perl@10257
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 391cf8ae74..44f3640183 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -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))) |