diff options
author | Michael G. Schwern <schwern@pobox.com> | 1999-10-03 09:16:47 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-03 17:21:01 +0000 |
commit | ab612ae322acd4d9f3012a98d8fef7a541ccdeca (patch) | |
tree | f850f58b446c316d1b64c6ca38d663acc331105e /pod | |
parent | c99cdc197163c0d3b8c3bd0e4bb832623e79c9d2 (diff) | |
download | perl-ab612ae322acd4d9f3012a98d8fef7a541ccdeca.tar.gz |
(Replaced by #4297.)
To: perl5-porters@perl.org
Subject: [PATCH av.c, perldiag.pod] Added field name to "No such array field"
Message-ID: <19991003131647.A2816@blackrider>
plus changed the error message to say "No such pseudo-hash field"
as discussed in the above mail message.
p4raw-id: //depot/cfgperl@4296
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index d224a54bd7..caf88861a0 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1967,9 +1967,9 @@ your system. (F) The argument to B<-I> must follow the B<-I> immediately with no intervening space. -=item No such array field +=item No such pseudo-hash field '%s' -(F) You tried to access an array as a hash, but the field name used is +(F) You tried to access a pseudo-hash, but the field name used is not defined. The hash at index 0 should map all valid field names to array indices for that to work. |