mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Fix typo in http client error display (#182)
This commit is contained in:
parent
78a9b112c4
commit
5c2495ab69
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ pub enum ConnectError {
|
|||
NoRecords,
|
||||
|
||||
/// Connecting took too long
|
||||
#[error("Timeout out while establishing connection")]
|
||||
#[error("Timeout while establishing connection")]
|
||||
Timeout,
|
||||
|
||||
/// Connector has been disconnected
|
||||
|
@ -115,7 +115,7 @@ pub enum SendRequestError {
|
|||
#[error("Http2 error {0}")]
|
||||
H2(#[from] ntex_h2::OperationError),
|
||||
/// Response took too long
|
||||
#[error("Timeout out while waiting for response")]
|
||||
#[error("Timeout while waiting for response")]
|
||||
Timeout,
|
||||
/// Tunnels are not supported for http2 connection
|
||||
#[error("Tunnels are not supported for http2 connection")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue