We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ab09d commit 559ec69Copy full SHA for 559ec69
library/std/src/thread/local.rs
@@ -29,9 +29,9 @@ use crate::fmt;
29
/// within a thread, and values that implement [`Drop`] get destructed when a
30
/// thread exits. Some caveats apply, which are explained below.
31
///
32
-/// A `LocalKey`'s initializer cannot recursively depend on itself, and using
33
-/// a `LocalKey` in this way will cause the initializer to infinitely recurse
34
-/// on the first call to `with`.
+/// A `LocalKey`'s initializer cannot recursively depend on itself. Using a
+/// `LocalKey` in this way may cause panics, aborts or infinite recursion on
+/// the first call to `with`.
35
36
/// # Examples
37
0 commit comments