summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-27 08:33:18 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-28 22:58:47 -0800
commit9711931a132d1dcbd76a0d85b17f351b4af98c81 (patch)
tree820482584a1a1eb6767765242b741151b3ebeda7 /sv.c
parent00455a9228d526dd30742f8768c5f710d40c2a85 (diff)
downloadperl-9711931a132d1dcbd76a0d85b17f351b4af98c81.tar.gz
Correct spelling of sv_insert error msg
It is already documented in perldiag with the right spelling.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index e972476239..6cbba65072 100644
--- a/sv.c
+++ b/sv.c
@@ -5744,7 +5744,7 @@ Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN l
PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
if (!bigstr)
- Perl_croak(aTHX_ "Can't modify non-existent substring");
+ Perl_croak(aTHX_ "Can't modify nonexistent substring");
SvPV_force_flags(bigstr, curlen, flags);
(void)SvPOK_only_UTF8(bigstr);
if (offset + len > curlen) {