"Attempt to access to key"?
Michael G. Schwern [Tue, 26 Feb 2002 01:01:28 +0000 (20:01 -0500)]
   Message-Id: <20020226060128.GA2439@blackrider>

p4raw-id: //depot/perl@14882

hv.c
pod/perldiag.pod

diff --git a/hv.c b/hv.c
index e1387b6..e4cc6c9 100644 (file)
--- a/hv.c
+++ b/hv.c
@@ -146,7 +146,7 @@ Perl_hv_notallowed(pTHX_ bool is_utf8, const char *key, I32 klen,
     if (is_utf8) {
        SvUTF8_on(sv);
     }
-    Perl_croak(aTHX_ "Attempt to access to key '%"SVf"' in fixed hash",sv);
+    Perl_croak(aTHX_ "Attempt to access key '%"SVf"' in fixed hash",sv);
 }
 
 /* (klen == HEf_SVKEY) is special for MAGICAL hv entries, meaning key slot
index acd5fc2..56c843e 100644 (file)
@@ -187,7 +187,7 @@ know which context to supply to the right side.
 (F) When C<vec> is called in an lvalue context, the second argument must be
 greater than or equal to zero.
 
-=item Attempt to access to key '%_' in fixed hash
+=item Attempt to access key '%_' in fixed hash
 
 (F) A hash has been marked as READONLY at the C level to turn it
 into a "record" with a fixed set of keys. The failing code