diff options
author | Karl Williamson <khw@cpan.org> | 2016-03-07 15:50:41 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-03-07 16:56:17 -0700 |
commit | 06f1e0b661078b09815d05627557df3626f3a910 (patch) | |
tree | 045933477173f565b67b20aa825d44df24e32572 /pod/perlguts.pod | |
parent | b895c103935275c98071d016c904adec2efa6611 (diff) | |
download | perl-06f1e0b661078b09815d05627557df3626f3a910.tar.gz |
perlguts: Slight clarification
Diffstat (limited to 'pod/perlguts.pod')
-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 1c66d87555..8091fe50a6 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -1498,7 +1498,7 @@ and back. =item C<SAVEFREESV(SV *sv)> -The refcount of C<sv> would be decremented at the end of +The refcount of C<sv> will be decremented at the end of I<pseudo-block>. This is similar to C<sv_2mortal> in that it is also a mechanism for doing a delayed C<SvREFCNT_dec>. However, while C<sv_2mortal> extends the lifetime of C<sv> until the beginning of the next statement, |