summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-08 21:35:12 -0600
committerKarl Williamson <khw@cpan.org>2015-09-03 23:10:37 -0600
commit801caa78cb2a50494c8737b9d9fc7d032be94263 (patch)
tree5c0f04d8f6fbc41acd75229b4a496b33762451cf /sv.c
parentc5608a1f701aaeaf4724bd21cb2a64e880598574 (diff)
downloadperl-801caa78cb2a50494c8737b9d9fc7d032be94263.tar.gz
perlapi: Nits
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index bb2cc21d35..b39098f953 100644
--- a/sv.c
+++ b/sv.c
@@ -6838,7 +6838,7 @@ Perl_sv_newref(pTHX_ SV *const sv)
Decrement an SV's reference count, and if it drops to zero, call
C<sv_clear> to invoke destructors and free up any memory used by
-the body; finally, deallocate the SV's head itself.
+the body; finally, deallocating the SV's head itself.
Normally called via a wrapper macro C<SvREFCNT_dec>.
=cut
@@ -15359,7 +15359,7 @@ Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
C<encoding> is assumed to be an C<Encode> object, the PV of C<ssv> is
assumed to be octets in that encoding and decoding the input starts
from the position which S<C<(PV + *offset)>> pointed to. C<dsv> will be
-concatenated the decoded UTF-8 string from C<ssv>. Decoding will terminate
+concatenated with the decoded UTF-8 string from C<ssv>. Decoding will terminate
when the string C<tstr> appears in decoding output or the input ends on
the PV of C<ssv>. The value which C<offset> points will be modified
to the last input position on C<ssv>.