[Catalyst-commits] r8137 -
trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD
dandv at dev.catalyst.perl.org
dandv at dev.catalyst.perl.org
Fri Jul 18 09:42:22 BST 2008
Author: dandv
Date: 2008-07-18 09:42:21 +0100 (Fri, 18 Jul 2008)
New Revision: 8137
Modified:
trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod
Log:
Fixed 4 minor typos
Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod 2008-07-18 01:21:07 UTC (rev 8136)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod 2008-07-18 08:42:21 UTC (rev 8137)
@@ -124,8 +124,8 @@
# Get the form that the :FormConfig attribute saved in the stash
my $form = $c->stash->{form};
- # Check if the form as been submitted (vs. displaying the initial
- # form) and if the data based validation. "submitted_and_valid"
+ # Check if the form has been submitted (vs. displaying the initial
+ # form) and if the data passed validation. "submitted_and_valid"
# is shorthand for "$form->submitted && !$form->has_errors"
if ($form->submitted_and_valid) {
# Create a new book
@@ -460,8 +460,8 @@
# Get the form that the :FormConfig attribute saved in the stash
my $form = $c->stash->{form};
- # Check if the form as been submitted (vs. displaying the initial
- # form) and if the data based validation. "submitted_and_valid"
+ # Check if the form has been submitted (vs. displaying the initial
+ # form) and if the data passed validation. "submitted_and_valid"
# is shorthand for "$form->submitted && !$form->has_errors"
if ($form->submitted_and_valid) {
# Save the form data for the book
More information about the Catalyst-commits
mailing list