diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-02-11 17:56:53 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-02-11 17:56:53 -0800 |
commit | f78ac02b2f32a8866870436c528ae37ea6192855 (patch) | |
tree | 36b2d6b7d30bfdf9fa1c371a04af5f21fef6fb6b | |
parent | aa80e1dcb371c94af142cbd5b35b014104f03584 (diff) | |
download | perl-f78ac02b2f32a8866870436c528ae37ea6192855.tar.gz |
perldbmfilter tweaks
• ‘Each’ is singular
• ‘If not’, not ‘in not’
-rw-r--r-- | pod/perldbmfilter.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldbmfilter.pod b/pod/perldbmfilter.pod index e58ce2013b..2a4c239955 100644 --- a/pod/perldbmfilter.pod +++ b/pod/perldbmfilter.pod @@ -17,7 +17,7 @@ The four C<filter_*> methods shown above are available in all the DBM modules that ship with Perl, namely DB_File, GDBM_File, NDBM_File, ODBM_File and SDBM_File. -Each of the methods work identically, and are used to install (or +Each of the methods works identically, and is used to install (or uninstall) a single DBM Filter. The only difference between them is the place that the filter is installed. @@ -51,7 +51,7 @@ every time you read a value from a DBM database. You can use any combination of the methods from none to all four. All filter methods return the existing filter, if present, or C<undef> -in not. +if not. To delete a filter pass C<undef> to it. |