From: Graham Knop Date: Sun, 10 Mar 2019 03:20:27 +0000 (+0100) Subject: whitespace cleanups X-Git-Tag: v5.9010~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=f9ce297698249b24617c5a60e7c625f2005be144 whitespace cleanups --- diff --git a/lib/Catalyst/Manual/Actions.pod b/lib/Catalyst/Manual/Actions.pod index 0e0bb19..6b99846 100644 --- a/lib/Catalyst/Manual/Actions.pod +++ b/lib/Catalyst/Manual/Actions.pod @@ -18,7 +18,7 @@ This is pretty simple. Actions work just like the normal dispatch attributes you are used to, like Local or Private: sub Hello :Local :ActionClass('SayBefore') { - $c->res->output( 'Hello '.$c->stash->{what} ); + $c->res->output( 'Hello '.$c->stash->{what} ); } In this example, we expect the SayBefore action to magically populate diff --git a/lib/Catalyst/Manual/ExtendingCatalyst.pod b/lib/Catalyst/Manual/ExtendingCatalyst.pod index 73af1bd..9f73e8d 100644 --- a/lib/Catalyst/Manual/ExtendingCatalyst.pod +++ b/lib/Catalyst/Manual/ExtendingCatalyst.pod @@ -727,5 +727,3 @@ This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut - - diff --git a/lib/Catalyst/Manual/Internals.pod b/lib/Catalyst/Manual/Internals.pod index 85de5cf..b8083c9 100644 --- a/lib/Catalyst/Manual/Internals.pod +++ b/lib/Catalyst/Manual/Internals.pod @@ -22,7 +22,6 @@ Catalyst initializes itself in two stages: When the Catalyst module is imported in the main application module, it stores any options. - =item 2 When C<< __PACKAGE__->setup >> is called, it evaluates any diff --git a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod index 3f58d07..f4a2df4 100644 --- a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod @@ -523,8 +523,6 @@ the controller. You can jump to the next chapter of the tutorial here: L - - =head1 AUTHORS Gerda Shank, C diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index 80339fe..4a5c05e 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -2,7 +2,6 @@ Catalyst::Manual::Tutorial::05_Authentication - Catalyst Tutorial - Chapter 5: Authentication - =head1 OVERVIEW This is B for the Catalyst tutorial. @@ -68,7 +67,6 @@ of the Tutorial Virtual machine (one subdirectory per chapter). There are also instructions for downloading the code in L. - =head1 BASIC AUTHENTICATION This section explores how to add authentication logic to a Catalyst @@ -188,14 +186,14 @@ table information. We aren't ready to try out the authentication just yet; we only want to do a quick check to be sure our model loads correctly. Assuming that you -are following along and using the "-r" option on C, +are following along and using the "-r" option on F, then the development server should automatically reload (if not, press C to break out of the server if it's running and then enter -C