X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FBasicCRUD.pod;fp=lib%2FCatalyst%2FManual%2FTutorial%2FBasicCRUD.pod;h=8c524c7407d7b25a54dcdf048e749058bcc76a39;hb=45569686c8d290df9fb4bd6a89ec1fcf6b5bbcb2;hp=d1ec819a12476ee6da7600ad2b5a28c7f21b0760;hpb=6395438e94034711cd5cb5f7646f868f045b1776;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod index d1ec819..8c524c7 100644 --- a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod @@ -444,7 +444,7 @@ along with a list of the eight remaining books. =head2 Fixing a Dangerous URL -Note the URL in your browser once you have performed the deleted in the +Note the URL in your browser once you have performed the deletetion in the prior step -- it is still referencing the delete action: http://localhost:3000/books/delete/6 @@ -548,7 +548,7 @@ should return. B Although this did present an opportunity to show a handy capability of C, it would be much better to use Catalyst's C feature in this situation. Although the technique here is -less dangerous than leaving the delete URL in the client's browser, +less dangerous than leaving the delete URL in the client's browser, we have still exposed the status message to the user. With C, this message returns to its rightful place as a service-side mechanism (we will migrate this code to C in the next part