1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 03:44:40 +01:00

correct spelling of ConnectError::Unresolved

This commit is contained in:
Rob Ede 2020-05-03 23:14:22 +01:00
parent 343b3c09fc
commit 523cee0351
No known key found for this signature in database
GPG Key ID: C2A3B36E841A91E6
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changes # Changes
## [Unreleased]
### Fixed
* Corrected spelling of `ConnectError::Unresolverd` to `ConnectError::Unresolved`
## [2.0.0-alpha.2] - 2020-03-08 ## [2.0.0-alpha.2] - 2020-03-08
### Changed ### Changed

View File

@ -88,7 +88,7 @@ impl<T: Address> Service for TcpConnector<T> {
Either::Left(TcpConnectorResponse::new(req, port, addr)) Either::Left(TcpConnectorResponse::new(req, port, addr))
} else { } else {
error!("TCP connector: got unresolved address"); error!("TCP connector: got unresolved address");
Either::Right(err(ConnectError::Unresolverd)) Either::Right(err(ConnectError::Unresolved))
} }
} }
} }

View File

@ -18,7 +18,7 @@ pub enum ConnectError {
/// Unresolved host name /// Unresolved host name
#[display(fmt = "Connector received `Connect` method with unresolved host")] #[display(fmt = "Connector received `Connect` method with unresolved host")]
Unresolverd, Unresolved,
/// Connection io error /// Connection io error
#[display(fmt = "{}", _0)] #[display(fmt = "{}", _0)]