Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lower prereq to 5.20 #5

Merged
merged 2 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"

env:
CIP_TAG: ${{ matrix.cip_tag }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ US English language dictionary for Test::SpellCheck

# DESCRIPTION

This [Test::SpellCheck](https://metacpan.org/pod/Test::SpellCheck) provides the US English dictionary for checking
spelling. It is a primary dictionary, so it shouldn't be used with other
primary dictionaries.
This [Test::SpellCheck](https://metacpan.org/pod/Test::SpellCheck) plugin provides the US English dictionary for
checking spelling. It is a primary dictionary, so it shouldn't be
used with other primary dictionaries.

# BUNDLED FILES

Expand All @@ -21,7 +21,7 @@ which is copyright under these terms (some of these terms are for other English
language dictionaries from the SCOWL project, which are not bundled with this
dist):

COPYRIGHT, SOURCES, and CREDITS:
## COPYRIGHT, SOURCES, and CREDITS:

The English dictionaries come directly from SCOWL
and is thus under the same copyright of SCOWL. The affix file is
Expand Down
10 changes: 5 additions & 5 deletions lib/Test/SpellCheck/Plugin/Lang/EN/US.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Test::SpellCheck::Plugin::Lang::EN::US;

use strict;
use warnings;
use 5.026;
use 5.020;
use experimental qw( signatures );
use File::ShareDir::Dist qw( dist_share );
use Path::Tiny qw( path );
Expand All @@ -16,9 +16,9 @@ use Path::Tiny qw( path );

=head1 DESCRIPTION

This L<Test::SpellCheck> provides the US English dictionary for checking
spelling. It is a primary dictionary, so it shouldn't be used with other
primary dictionaries.
This L<Test::SpellCheck> plugin provides the US English dictionary for
checking spelling. It is a primary dictionary, so it shouldn't be
used with other primary dictionaries.

=cut

Expand Down Expand Up @@ -48,7 +48,7 @@ which is copyright under these terms (some of these terms are for other English
language dictionaries from the SCOWL project, which are not bundled with this
dist):

COPYRIGHT, SOURCES, and CREDITS:
=head2 COPYRIGHT, SOURCES, and CREDITS:

The English dictionaries come directly from SCOWL
and is thus under the same copyright of SCOWL. The affix file is
Expand Down
2 changes: 1 addition & 1 deletion t/test_spellcheck_plugin_lang_en_us.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use 5.026;
use 5.020;
use Test2::V0 -no_srand => 1;
use Test::SpellCheck::Plugin::Lang::EN::US;
use Path::Tiny qw( path );
Expand Down
Loading