Skip Menu |

This queue is for tickets about the Validation-Class CPAN distribution.

Report information
The Basics
Id: 72753
Status: open
Priority: 0/
Queue: Validation-Class

People
Owner: Nobody in particular
Requestors: gregoa [...] debian.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] Minor spelling mistake
Date: Sun, 27 Nov 2011 13:34:49 +0100
To: bug-validation-class [...] rt.cpan.org
From: gregor herrmann <gregoa [...] debian.org>
In Debian we are currently applying the attached patch to Validation-Class. We thought you might be interested in it, too. Description: Fixing man page Author: Fabrizio Regalli <fabreg@fabreg.it> Reviewed-by: gregor herrmann <gregoa@debian.org> Last-Update: 2011-11-27 Thanks in advance, gregor herrmann, Debian Perl Group

Message body is not shown because sender requested not to inline it.

From: fabreg [...] fabreg.it
An up-to-date version of the previous patch. Thanks. Fabrizio. On Sun Nov 27 07:35:09 2011, gregoa@debian.org wrote: Show quoted text
> In Debian we are currently applying the attached patch to Validation-Class. > We thought you might be interested in it, too. > > Description: Fixing man page > Author: Fabrizio Regalli <fabreg@fabreg.it> > Reviewed-by: gregor herrmann <gregoa@debian.org> > Last-Update: 2011-11-27 > > > Thanks in advance, > gregor herrmann, Debian Perl Group
Subject: spelling-error.diff
Description: Fixing man page Bug: https://rt.cpan.org/Ticket/Display.html?id=72753 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=72753 Author: Fabrizio Regalli <fabreg@fabreg.it> Reviewed-by: gregor herrmann <gregoa@debian.org> Reviewed-by: Fabrizio Regalli <fabreg@fabreg.it> Last-Update: 2012-04-26 --- a/lib/Validation/Class/Prototype.pm +++ b/lib/Validation/Class/Prototype.pm @@ -2850,7 +2850,7 @@ $self = $self->apply_filters; - # apply filters to fields labeled as "dont filter automatically" (post) + # apply filters to fields labeled as "don't filter automatically" (post) $self = $self->apply_filters('post'); =head2 class @@ -3054,7 +3054,7 @@ my ($name, $email, $login, $password) = $self->get_params(qw/name email login password/); - # you should note that if the params dont exist they will return undef + # you should note that if the params don't exist they will return undef # ... meaning you should check that it exists before checking its value # e.g.
From: fabreg [...] fabreg.it
Hi, an update version of spelling-error.diff for using with 7.13 version. Thanks. Fabrizio.
Subject: spelling-error.diff
Description: Fixing man page Bug: https://rt.cpan.org/Ticket/Display.html?id=72753 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=72753 Author: Fabrizio Regalli <fabreg@fabreg.it> Reviewed-by: gregor herrmann <gregoa@debian.org> Reviewed-by: Fabrizio Regalli <fabreg@fabreg.it> Last-Update: 2012-05-03 --- a/lib/Validation/Class/Prototype.pm +++ b/lib/Validation/Class/Prototype.pm @@ -2995,7 +2995,7 @@ $self = $self->apply_filters; - # apply filters to fields labeled as "dont filter automatically" (post) + # apply filters to fields labeled as "don't filter automatically" (post) $self = $self->apply_filters('post'); =head2 class @@ -3184,7 +3184,7 @@ my ($name, $email, $login, $password) = $self->get_params(qw/name email login password/); - # you should note that if the params dont exist they will return undef + # you should note that if the params don't exist they will return undef # ... meaning you should check that it is defined before doing any # comparison checking -- as doing so would generate an error # e.g.