added space to closing `}` around task_sender

This commit is contained in:
Peter Trotman 2019-09-09 14:44:34 +01:00 committed by GitHub
parent 7aba2abd35
commit ff6b79630d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ fn new_executor_and_spawner() -> (Executor, Spawner) {
// a real executor.
const MAX_QUEUED_TASKS: usize = 10_000;
let (task_sender, ready_queue) = sync_channel(MAX_QUEUED_TASKS);
(Executor { ready_queue }, Spawner { task_sender})
(Executor { ready_queue }, Spawner { task_sender })
}
// ANCHOR_END: executor_decl