Fix pod screwup in a05ea1cf8be
authorFather Chrysostomos <sprout@cpan.org>
Sat, 9 Nov 2013 01:41:31 +0000 (17:41 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Sat, 9 Nov 2013 01:41:31 +0000 (17:41 -0800)
Thanks to Daniel Dragan for pointing it out.

sv.c

diff --git a/sv.c b/sv.c
index b165589..bbb2a03 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -3663,9 +3663,9 @@ Perl_sv_utf8_decode(pTHX_ SV *const sv)
 Copies the contents of the source SV C<ssv> into the destination SV
 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
 function if the source SV needs to be reused.  Does not handle 'set' magic on
-destination SV. C alls 'get' magic on
-source SV.  Loosely speaking, it performs a
-copy-by-value, obliterating any previous content of the destination.
+destination SV.  Calls 'get' magic on source SV.  Loosely speaking, it
+performs a copy-by-value, obliterating any previous content of the
+destination.
 
 You probably want to use one of the assortment of wrappers, such as
 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and