mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-26 00:00:16 +02:00
chore: move doc comments inside macro invocations (#901)
This commit is contained in:
committed by
Carl Lerche
parent
dd66096ea0
commit
2d5aa82341
@@ -64,8 +64,10 @@ enum State {
|
||||
Active
|
||||
}
|
||||
|
||||
/// Thread-local tracking the current executor
|
||||
thread_local!(static EXECUTOR: Cell<State> = Cell::new(State::Empty));
|
||||
thread_local!{
|
||||
/// Thread-local tracking the current executor
|
||||
static EXECUTOR: Cell<State> = Cell::new(State::Empty)
|
||||
}
|
||||
|
||||
// ===== impl DefaultExecutor =====
|
||||
|
||||
|
||||
Reference in New Issue
Block a user