File tree 3 files changed +4
-3
lines changed 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ where
182
182
///
183
183
/// ```
184
184
/// # use http::header::HOST;
185
- /// # use hyper::client::conn::SendRequest;
185
+ /// # use hyper::client::conn::http1:: SendRequest;
186
186
/// # use hyper::Body;
187
187
/// use hyper::Request;
188
188
///
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ where
119
119
///
120
120
/// ```
121
121
/// # use http::header::HOST;
122
- /// # use hyper::client::conn::SendRequest;
122
+ /// # use hyper::client::conn::http2:: SendRequest;
123
123
/// # use hyper::Body;
124
124
/// use hyper::Request;
125
125
///
Original file line number Diff line number Diff line change 41
41
//!
42
42
//! // To send via the same connection again, it may not work as it may not be ready,
43
43
//! // so we have to wait until the request_sender becomes ready.
44
- //! request_sender.ready().await?;
44
+ //! // TODO:(mike) how to handle readiness
45
+ //! // request_sender.ready().await?;
45
46
//! let request = Request::builder()
46
47
//! .header("Host", "example.com")
47
48
//! .method("GET")
You can’t perform that action at this time.
0 commit comments