aboutsummaryrefslogtreecommitdiff
path: root/lib/List
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-03 15:25:10 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-03 15:26:01 +1300
commitd61c5ece21b2bbfcfd67f7472c7832395f9c458b (patch)
treeddb07e2e4a26bd9edf26d5f42dbe4156046db789 /lib/List
parentFirst commit of List::Filters (diff)
downloadList-Breakdown-d61c5ece21b2bbfcfd67f7472c7832395f9c458b.tar.gz (sig)
List-Breakdown-d61c5ece21b2bbfcfd67f7472c7832395f9c458b.zip
Correct a documentation typov0.02
Diffstat (limited to 'lib/List')
-rw-r--r--lib/List/Filters.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/List/Filters.pm b/lib/List/Filters.pm
index aa59a49..41e88ff 100644
--- a/lib/List/Filters.pm
+++ b/lib/List/Filters.pm
@@ -13,7 +13,7 @@ use Carp;
use Exporter 'import';
# Specify package version
-our $VERSION = 0.01;
+our $VERSION = 0.02;
# Specify functions available for export
our @EXPORT_OK = 'filter';
@@ -89,7 +89,7 @@ List::Filters - Build list sublists matching conditions
=head1 VERSION
-Version 0.01
+Version 0.02
=head1 DESCRIPTION
@@ -118,7 +118,7 @@ You could maybe think of it as a multi-C<grep> that returns named results.
},
has_ba => qr/ba/msx,
};
- my %filterd = filter $cats, @words;
+ my %filtered = filter $cats, @words;
=head1 SUBROUTINES/METHODS