summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-09-21 00:29:09 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-09-21 11:21:09 -0700
commit7e234f81b6d7325dd91edae7737f9bd69a91fc73 (patch)
treee207e7a3048ab1a53d6d9df46959c698783f552a /sv.c
parente96513a272994fa40337538729c370cb2b01f9fd (diff)
downloadperl-7e234f81b6d7325dd91edae7737f9bd69a91fc73.tar.gz
Consistent spaces after dots in perlapi
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 2ff999f306..4dede1a7a7 100644
--- a/sv.c
+++ b/sv.c
@@ -4923,10 +4923,10 @@ Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek)
Tells an SV to use C<ptr> to find its string value. Normally the
string is stored inside the SV, but sv_usepvn allows the SV to use an
outside string. The C<ptr> should point to memory that was allocated
-by L<Newx|perlclib/Memory Management and String Handling>. It must be
+by L<Newx|perlclib/Memory Management and String Handling>. It must be
the start of a Newx-ed block of memory, and not a pointer to the
middle of it (beware of L<OOK|perlguts/Offsets> and copy-on-write),
-and not be from a non-Newx memory allocator like C<malloc>. The
+and not be from a non-Newx memory allocator like C<malloc>. The
string length, C<len>, must be supplied. By default this function
will C<Renew> (i.e. realloc, move) the memory pointed to by C<ptr>,
so that pointer should not be freed or used by the programmer after