doc: clarified nonpersistence of the stash in C::M::Intro
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Intro.pod
index ae3f54d..bc1358d 100644 (file)
@@ -119,7 +119,7 @@ Now visit these locations with your favorite browser or user agent to see Cataly
 
 =item http://localhost:3000/
 
-=item http://localhost:3000/my_controller/
+=item http://localhost:3000/my/controller/
 
 =back
 
@@ -242,6 +242,8 @@ The last of these, the stash, is a universal hash for sharing data among applica
         $c->res->output( $c->stash->{message} );
     }
 
+Note that the stash should be used only for passing data in an individual request cycle; it gets cleared at a new request. If you need to maintain more persistent data, use a session.
+
 =head3 Actions
 
 A Catalyst controller is defined by its actions. An action is