2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-11 10:56:44 +00:00

remove invalid doc comment

This commit is contained in:
dignifiedquire 2020-04-27 11:11:16 +02:00
parent 48dd683535
commit 280b1a4344

View file

@ -4,10 +4,6 @@ use crate::task::{Builder, JoinHandle};
/// Spawns a task onto the thread-local executor.
///
/// This function is similar to [`std::thread::spawn`], except it spawns an asynchronous task.
///
/// [`std::thread`]: https://doc.rust-lang.org/std/thread/fn.spawn.html
///
/// # Examples
///
/// ```