whitespace cleanup
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Middleware / Stash.pm
index 0ed488d..1e8a3d5 100644 (file)
@@ -41,7 +41,7 @@ sub _create_stash {
 
 sub call {
   my ($self, $env) = @_;
-  $env->{+PSGI_KEY} = $self->_create_stash 
+  $env->{+PSGI_KEY} = $self->_create_stash
     unless exists($env->{+PSGI_KEY});
 
   return $self->app->($env);
@@ -61,7 +61,7 @@ We store a coderef under the C<PSGI_KEY> which can be dereferenced with
 key values or nothing to access the underlying hashref.
 
 Anything placed into the stash will be available in the stash of any 'mounted'
-Catalyst applictions.  A mounted Catalyst application may set the stash and
+Catalyst applications.  A mounted Catalyst application may set the stash and
 'pass back' information to the parent application.  Non Catalyst applications
 may use this middleware to access and set stash values.