Skip Menu |

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

Report information
The Basics
Id: 86158
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] Spelling glitch
Date: Sat, 15 Jun 2013 00:40:39 +0200
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: fix a spelling mistake Origin: vendor Author: gregor herrmann <gregoa@debian.org> Last-Update: 2013-06-15 Thanks in advance, gregor herrmann, Debian Perl Group

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

Here's an updated version with more fixes.
Subject: spelling.patch
Description: fix a spelling mistake Origin: vendor Bug: https://rt.cpan.org/Ticket/Display.html?id=86158 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=86158 Author: gregor herrmann <gregoa@debian.org> Last-Update: 2017-11-24 --- a/lib/Validation/Class/Cookbook.pod +++ b/lib/Validation/Class/Cookbook.pod @@ -524,7 +524,7 @@ # the order in which these frameworks are used is important # loading Moose first ensures that the Moose::Object constructor - # has precendence + # has precedence sub BUILD { @@ -661,12 +661,12 @@ =head2 Problem You want to know how to use your data validation classes to perform other tasks -programatically (e.g. generate documentation, etc). +programmatically (e.g. generate documentation, etc). =head2 Solution By using the prototype class associated with your validation class you can -introspect it's configuration and perform additional tasks programatically. +introspect it's configuration and perform additional tasks programmatically. =head2 Discussion --- a/lib/Validation/Class.pm +++ b/lib/Validation/Class.pm @@ -1033,7 +1033,7 @@ The ensure keyword (or ens) is used to convert a pre-existing method into an auto-validating method. The auto-validating method will be registered and function as if it was created using the method keyword. -The original pre-existing method will be overridden with a modifed version +The original pre-existing method will be overridden with a modified version which performs the pre and/or post validation routines. package MyApp::Person;