Fix a typo

This commit is contained in:
Stjepan Glavina 2020-04-27 14:23:18 +02:00
parent 1bf45e54a1
commit 530f43203d
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ impl BlockingExecutor {
/// Spawns blocking code onto a thread.
///
/// Note that `blocking!(expr)` is just syntax sugar for
/// `Task::blocking(async move { foo }).await`.
/// `Task::blocking(async move { expr }).await`.
///
/// # Examples
///