diff options
author | Michael G. Schwern <schwern@pobox.com> | 1999-10-03 09:54:23 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-03 17:50:59 +0000 |
commit | 88e9b055d1d2b36d019a3b541f111de4d9b71e3e (patch) | |
tree | bb12c08e6d07189374337e1c6ed163a2c8871ef9 /pod | |
parent | ab612ae322acd4d9f3012a98d8fef7a541ccdeca (diff) | |
download | perl-88e9b055d1d2b36d019a3b541f111de4d9b71e3e.tar.gz |
A better version of #4296.
To: perl5-porters@perl.org
Subject: [PATCH av.c, op.c, perldiag.pod] "array field" -> "pseudo-hash field"
Message-ID: <19991003135423.A3050@blackrider>
p4raw-id: //depot/cfgperl@4297
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index caf88861a0..b35d260eb2 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1967,13 +1967,13 @@ your system. (F) The argument to B<-I> must follow the B<-I> immediately with no intervening space. -=item No such pseudo-hash field '%s' +=item No such pseudo-hash field "%s" -(F) You tried to access a pseudo-hash, but the field name used is +(F) You tried to access an array as a 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. -=item No such field "%s" in variable %s of type %s +=item No such pseudo-hash field "%s" in variable %s of type %s (F) You tried to access a field of a typed variable where the type does not know about the field name. The field names are looked up in |