mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
fix tests
This commit is contained in:
parent
96bb2b4590
commit
d3a4b65cf5
2 changed files with 4 additions and 3 deletions
|
@ -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 {
|
||||
|
|
|
@ -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");
|
||||
/// }
|
||||
/// ```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue