Skip to content

Commit

Permalink
Fix a spelling mistake in the HTTP Propfile class.
Browse files Browse the repository at this point in the history
  • Loading branch information
B-Prod committed Oct 18, 2014
1 parent 52828dd commit dd5ed91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Profile/Api/HttpApiProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ protected function getServerKey($options) {
// which was refused to us... No need to ask twice!
if ($response->getStatusCode() != 202)
{
throw new HttpProfileException(sprintf('Failed to get the server private key with statuc code %s.', $response->getStatusCode()), HttpProfileException::CODE_HTTP_UNSUPPORTED_STATUS);
throw new HttpProfileException(sprintf('Failed to get the server private key with status code %s.', $response->getStatusCode()), HttpProfileException::CODE_HTTP_UNSUPPORTED_STATUS);
}

$data = json_decode($response->getBody());
Expand Down

0 comments on commit dd5ed91

Please sign in to comment.