Fixed some typos
Sebastian Riedel [Tue, 8 Nov 2005 22:49:36 +0000 (22:49 +0000)]
lib/Catalyst/Engine/HTTP/Restarter.pm

index 134e6be..cfe0e9a 100644 (file)
@@ -49,7 +49,7 @@ sub run {
                     PeerAddr => $host,
                     PeerPort => $port
                   )
-                  or die "can't create client socket (is server running?): ",
+                  or die "Can't create client socket (is server running?): ",
                   $!;
 
                 # build the Kill request
@@ -59,7 +59,7 @@ sub run {
                 $req->protocol('HTTP/1.0');
 
                 $client->send( $req->as_string )
-                  or die "can't send restart instruction: ", $!;
+                  or die "Can't send restart instruction: ", $!;
                 $client->close();
                 exit;
             }