summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/lib/fields.pm
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/lib/fields.pm')
-rw-r--r--contrib/perl5/lib/fields.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/perl5/lib/fields.pm b/contrib/perl5/lib/fields.pm
index db2eea7..54602a6 100644
--- a/contrib/perl5/lib/fields.pm
+++ b/contrib/perl5/lib/fields.pm
@@ -32,7 +32,7 @@ does so by updating the %FIELDS hash in the calling package.
If a typed lexical variable holding a reference is used to access a
hash element and the %FIELDS hash of the given type exists, then the
operation is turned into an array access at compile time. The %FIELDS
-hash map from hash element names to the array indices. If the hash
+hash maps from hash element names to the array indices. If the hash
element is not present in the %FIELDS hash, then a compile-time error
is signaled.
@@ -57,7 +57,7 @@ constructor like this does the job:
{
my $class = shift;
no strict 'refs';
- my $self = bless [\%{"$class\::FIELDS"], $class;
+ my $self = bless [\%{"$class\::FIELDS"}], $class;
$self;
}
OpenPOWER on IntegriCloud