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 @@ -317,7 +317,7 @@ impl Request {
317317 /// Returns `Err` if we run into an error while sending the
318318 /// request, or receiving/parsing the response. The specific error
319319 /// is described in the `Err`, and it can be any
320- /// [`minreq ::Error`](enum.Error.html) except
320+ /// [`bitreq ::Error`](enum.Error.html) except
321321 /// [`InvalidUtf8InBody`](enum.Error.html#variant.InvalidUtf8InBody).
322322 #[ cfg( feature = "async" ) ]
323323 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