We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a60d0 commit 0e12fe6Copy full SHA for 0e12fe6
library/std/src/thread/spawnhook.rs
@@ -6,7 +6,7 @@ use crate::thread::Thread;
6
crate::thread_local! {
7
/// A thread local linked list of spawn hooks.
8
///
9
- /// It is a linked list of Arcs, such that it can very cheaply be inhereted by spawned threads.
+ /// It is a linked list of Arcs, such that it can very cheaply be inherited by spawned threads.
10
11
/// (That technically makes it a set of linked lists with shared tails, so a linked tree.)
12
static SPAWN_HOOKS: Cell<SpawnHooks> = const { Cell::new(SpawnHooks { first: None }) };
0 commit comments