summaryrefslogtreecommitdiff
path: root/dist/base
diff options
context:
space:
mode:
authorSamanta Navarro <ferivoz@riseup.net>2020-10-03 12:39:08 +0000
committerJames E Keenan <jkeenan@cpan.org>2020-10-03 10:40:40 -0400
commitf1460a6600d0790c237adf97bee973eae35630bf (patch)
treea43dc647d0280e8df3fc08729e7b48ed7d6a7182 /dist/base
parent0df722d69378fb3b3df5c8d7746122138fcdc5a9 (diff)
downloadperl-f1460a6600d0790c237adf97bee973eae35630bf.tar.gz
Fix typos
For: https://github.com/Perl/perl5/pull/18201 Committer: Samanta Navarro is now a Perl author. To keep 'make test_porting' happy: Increment $VERSION in several files. Regenerate uconfig.h via './perl -Ilib regen/uconfig_h.pl'.
Diffstat (limited to 'dist/base')
-rw-r--r--dist/base/t/fields-5_6_0.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/base/t/fields-5_6_0.t b/dist/base/t/fields-5_6_0.t
index 1f7d967851..5f6be52976 100644
--- a/dist/base/t/fields-5_6_0.t
+++ b/dist/base/t/fields-5_6_0.t
@@ -182,7 +182,7 @@ ok( fstr($ph) eq 'a:1,b:2,c:3' );
$ph = fields::phash([qw/a b c/], [1, 2, 3]);
ok( fstr($ph) eq 'a:1,b:2,c:3' );
-# The way exists() works with psuedohashes changed from 5.005 to 5.6
+# The way exists() works with pseudohashes changed from 5.005 to 5.6
$ph = fields::phash([qw/a b c/], [1]);
if( $] > 5.006 ) {
ok( !( exists $ph->{b} or exists $ph->{c} or !exists $ph->{a} ) );