From: Sebastian Riedel Date: Tue, 8 Nov 2005 22:49:36 +0000 (+0000) Subject: Fixed some typos X-Git-Tag: 5.7099_04~992 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=49e0f58dc3b6e980b064dc85ed73bfaf092b4cd4 Fixed some typos --- diff --git a/lib/Catalyst/Engine/HTTP/Restarter.pm b/lib/Catalyst/Engine/HTTP/Restarter.pm index 134e6be..cfe0e9a 100644 --- a/lib/Catalyst/Engine/HTTP/Restarter.pm +++ b/lib/Catalyst/Engine/HTTP/Restarter.pm @@ -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; }