mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
chore: move doc comments inside macro invocations (#901)
This commit is contained in:
committed by
Carl Lerche
parent
dd66096ea0
commit
2d5aa82341
@@ -20,8 +20,10 @@ pub struct Clock {
|
||||
now: Option<Arc<Now>>,
|
||||
}
|
||||
|
||||
/// Thread-local tracking the current clock
|
||||
thread_local!(static CLOCK: Cell<Option<*const Clock>> = Cell::new(None));
|
||||
thread_local!{
|
||||
/// Thread-local tracking the current clock
|
||||
static CLOCK: Cell<Option<*const Clock>> = Cell::new(None)
|
||||
}
|
||||
|
||||
/// Returns an `Instant` corresponding to "now".
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user