File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ impl Request {
315315 /// Returns `Err` if we run into an error while sending the
316316 /// request, or receiving/parsing the response. The specific error
317317 /// is described in the `Err`, and it can be any
318- /// [`minreq ::Error`](enum.Error.html) except
318+ /// [`bitreq ::Error`](enum.Error.html) except
319319 /// [`InvalidUtf8InBody`](enum.Error.html#variant.InvalidUtf8InBody).
320320 #[ cfg( feature = "async" ) ]
321321 pub async fn send_async ( self ) -> Result < Response , Error > {
Original file line number Diff line number Diff line change @@ -144,10 +144,10 @@ impl Response {
144144 /// ```no_run
145145 /// use serde_json::Value;
146146 ///
147- /// # fn main() -> Result<(), minreq ::Error> {
147+ /// # fn main() -> Result<(), bitreq ::Error> {
148148 /// # let url_to_json_resource = "http://example.org/resource.json";
149149 /// // Value could be any type that implements Deserialize!
150- /// let user = minreq ::get(url_to_json_resource).send()?.json::<Value>()?;
150+ /// let user = bitreq ::get(url_to_json_resource).send()?.json::<Value>()?;
151151 /// println!("User name is '{}'", user["name"]);
152152 /// # Ok(())
153153 /// # }
You can’t perform that action at this time.
0 commit comments