Skip to content

Commit 95430c8

Browse files
committed
remove redundant docs
1 parent 6431905 commit 95430c8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tokio/src/task/builder.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ use std::{future::Future, io, mem};
2020
/// the task
2121
///
2222
/// There are three types of task that can be spawned from a Builder:
23-
/// - [`spawn_local`] for executing not [`Send`] futures using [`LocalSet`]
24-
/// or [`LocalRuntime`] (unstable)
23+
/// - [`spawn_local`] for executing not [`Send`] futures
2524
/// - [`spawn`] for executing [`Send`] futures on the runtime
2625
/// - [`spawn_blocking`] for executing blocking code in the
2726
/// blocking thread pool.
@@ -59,8 +58,6 @@ use std::{future::Future, io, mem};
5958
/// [`spawn_local`]: Builder::spawn_local
6059
/// [`spawn`]: Builder::spawn
6160
/// [`spawn_blocking`]: Builder::spawn_blocking
62-
/// [`LocalRuntime`]: crate::runtime::LocalRuntime
63-
/// [`LocalSet`]: LocalSet
6461
#[derive(Default, Debug)]
6562
#[cfg_attr(docsrs, doc(cfg(all(tokio_unstable, feature = "tracing"))))]
6663
pub struct Builder<'a> {

0 commit comments

Comments
 (0)