fix tests

This commit is contained in:
Nikolay Kim 2021-08-31 02:10:25 +06:00
parent 96bb2b4590
commit d3a4b65cf5
2 changed files with 4 additions and 3 deletions

View file

@ -31,9 +31,10 @@ type BoxedConnector =
///
/// ```rust,no_run
/// use ntex::http::client::Connector;
/// use ntex::time::Millis;
///
/// let connector = Connector::default()
/// .timeout(5_000)
/// .timeout(Millis(5_000))
/// .finish();
/// ```
pub struct Connector {

View file

@ -48,11 +48,11 @@ where
/// Wait 100ms and print "100 ms have elapsed".
///
/// ```
/// use ntex::time::sleep;
/// use ntex::time::{sleep, Millis};
///
/// #[ntex::main]
/// async fn main() {
/// sleep(100).await;
/// sleep(Millis(100)).await;
/// println!("100 ms have elapsed");
/// }
/// ```