1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-18 05:43:12 +01:00

Merge pull request #135 from actix/fix/unresolverd

correct spelling of ConnectError::Unresolved
This commit is contained in:
Yuki Okushi 2020-05-06 14:45:30 +09:00 committed by GitHub
commit a5c185e80e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)]