We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c0774f commit a202162Copy full SHA for a202162
1 file changed
std/src/thread/local.rs
@@ -24,10 +24,10 @@ use crate::fmt;
24
/// [`with`]) within a thread, and values that implement [`Drop`] get
25
/// destructed when a thread exits. Some platform-specific caveats apply, which
26
/// are explained below.
27
-/// Note that, should the destructor panics, the whole process will be [aborted].
+/// Note that, should the destructor panic, the whole process will be [aborted].
28
///
29
/// A `LocalKey`'s initializer cannot recursively depend on itself. Using a
30
-/// `LocalKey` in this way may cause panics, aborts or infinite recursion on
+/// `LocalKey` in this way may cause panics, aborts, or infinite recursion on
31
/// the first call to `with`.
32
33
/// [aborted]: crate::process::abort
0 commit comments