1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-01 04:51:51 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Harrison
7880d5e2bf Remove extra '#' so docs render correctly. (#1338) 2020-02-07 23:01:23 +09:00
0x1793d1
c23020d266 Fix extra line feed (#1206) 2019-12-09 22:40:37 +06:00
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ impl fmt::Display for Error {
impl fmt::Debug for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
writeln!(f, "{:?}", &self.cause)
write!(f, "{:?}", &self.cause)
}
}

View File

@@ -171,7 +171,7 @@ pub mod client {
//! An HTTP Client
//!
//! ```rust
//! # use futures::future::{Future, lazy};
//! use futures::future::{Future, lazy};
//! use actix_rt::System;
//! use actix_web::client::Client;
//!