X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FAdvancedCRUD.pod;h=05e2f7779266a2dac12203173bbec857d8c676bd;hb=8112f93129b5c90c215ac22135b1172ed710a125;hp=6e157e0dece38d4e5ccef1124c662d2cb217a4b4;hpb=3e12c503c137f7581c18fb26d6215d86c3dead25;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod b/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod index 6e157e0..05e2f77 100644 --- a/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod @@ -70,7 +70,7 @@ L. Here, we will make use of the L to not only ease form creation, but to also provide validation of the submitted -data. The approached used by the part of the tutorial is to slowly +data. The approached used by this part of the tutorial is to slowly incorporate additional L functionality in a step-wise fashion (we start with fairly simple form creation and then move on to more complex and "magical" features such as validation and @@ -191,7 +191,8 @@ following methods: # Set a status message for the user $c->stash->{status_msg} = 'Book created'; - # Use 'hw_create' to redisplay the form + # Use 'hw_create' to redisplay the form. As discussed in + # Part 3, 'detach' is like 'forward', but it does not return $c->detach('hw_create'); }