X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FIntro.pod;h=c25b9ff926358cfc90ac3991792d20e301b299fa;hp=0ee91749cc889a5b08e97ca3e2bbc0b9bd82b666;hb=c462faf09f20b2fca60bb9c63bf30b158760aa2c;hpb=7e1212a90eff25982e9e1383a38e06219bcfb960 diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 0ee9174..c25b9ff 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -237,7 +237,7 @@ The last of these, the stash, is a universal hash for sharing data among applica $c->forward('show-message'); } - show-message : Private { + sub show-message : Private { my ( $self, $c ) = @_; $c->res->output( $c->stash->{message} ); }