diff options
Diffstat (limited to 'helix-dap/src/lib.rs')
-rw-r--r-- | helix-dap/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-dap/src/lib.rs b/helix-dap/src/lib.rs index f60b102c..24d7472b 100644 --- a/helix-dap/src/lib.rs +++ b/helix-dap/src/lib.rs @@ -14,8 +14,8 @@ pub enum Error { Parse(#[from] serde_json::Error), #[error("IO Error: {0}")] IO(#[from] std::io::Error), - #[error("request timed out")] - Timeout, + #[error("request {0} timed out")] + Timeout(u64), #[error("server closed the stream")] StreamClosed, #[error(transparent)] |