1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00

fix doc test

This commit is contained in:
Nikolay Kim 2018-05-24 22:04:14 -07:00
parent f48702042b
commit 255cd4917d

View File

@ -286,9 +286,9 @@ impl ClientConnector {
/// ///
/// // Start `ClientConnector` with custom `SslConnector` /// // Start `ClientConnector` with custom `SslConnector`
/// let ssl_conn = SslConnector::builder(SslMethod::tls()).unwrap().build(); /// let ssl_conn = SslConnector::builder(SslMethod::tls()).unwrap().build();
/// let conn: Address<_> = ClientConnector::with_connector(ssl_conn).start(); /// let conn: Addr<Unsync, _> = ClientConnector::with_connector(ssl_conn).start();
/// ///
/// Arbiter::handle().spawn({ /// Arbiter::spawn(
/// conn.send( /// conn.send(
/// Connect::new("https://www.rust-lang.org").unwrap()) // <- connect to host /// Connect::new("https://www.rust-lang.org").unwrap()) // <- connect to host
/// .map_err(|_| ()) /// .map_err(|_| ())
@ -299,7 +299,7 @@ impl ClientConnector {
/// # Arbiter::system().do_send(actix::msgs::SystemExit(0)); /// # Arbiter::system().do_send(actix::msgs::SystemExit(0));
/// Ok(()) /// Ok(())
/// }) /// })
/// }); /// );
/// ///
/// sys.run(); /// sys.run();
/// } /// }