fix warning

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-10-09 23:44:26 +02:00
parent 12fdc1232d
commit 33806ad44c
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED

View file

@ -19,7 +19,7 @@ use kv_log_macro::trace;
/// Calling this function is similar to [spawning] a thread and immediately [joining] it, except an /// Calling this function is similar to [spawning] a thread and immediately [joining] it, except an
/// asynchronous task will be spawned. /// asynchronous task will be spawned.
/// ///
/// See also: [`task::blocking`]. /// See also: [`task::spawn_blocking`].
/// ///
/// [`task::spawn_blocking`]: fn.spawn_blocking.html /// [`task::spawn_blocking`]: fn.spawn_blocking.html
/// ///