纠正单词错误

This commit is contained in:
ShingChi 2014-10-10 07:18:50 +08:00
parent 80de4900df
commit e49287f957

View File

@ -375,8 +375,8 @@ abstract class Typecho_Http_Client_Adapter
}
}
$this->reponseBody = implode("\n", $lines);
return $this->reponseBody;
$this->responseBody = implode("\n", $lines);
return $this->responseBody;
}
/**
@ -411,7 +411,7 @@ abstract class Typecho_Http_Client_Adapter
*/
public function getResponseBody()
{
return $this->reponseBody;
return $this->responseBody;
}
/**