fix "recieve" typo in various places

This commit is contained in:
Evgeni Golov
2013-10-20 17:19:26 +02:00
parent 4231edec53
commit 86fe22334c
2 changed files with 2 additions and 2 deletions

View File

@@ -197,7 +197,7 @@ union code_converter {
*
* If the value is in an invalid or reserved range ec is set accordingly.
*
* @param [in] payload Close frame payload value recieved over the wire.
* @param [in] payload Close frame payload value received over the wire.
* @param [out] ec Set to indicate what error occurred, if any.
* @return The extracted value
*/

View File

@@ -624,7 +624,7 @@ void connection<config>::handle_transport_init(lib::error_code const & ec) {
if (ec) {
std::stringstream s;
s << "handle_transport_init recieved error: "<< ec.message();
s << "handle_transport_init received error: "<< ec.message();
m_elog.write(log::elevel::fatal,s.str());
this->terminate(ec);