Skip to content

Commit 559ec69

Browse files
committed
std: broaden the allowed behaviour for recursive TLS initialization
1 parent 96ab09d commit 559ec69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/thread/local.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ use crate::fmt;
2929
/// within a thread, and values that implement [`Drop`] get destructed when a
3030
/// thread exits. Some caveats apply, which are explained below.
3131
///
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`.
32+
/// A `LocalKey`'s initializer cannot recursively depend on itself. Using a
33+
/// `LocalKey` in this way may cause panics, aborts or infinite recursion on
34+
/// the first call to `with`.
3535
///
3636
/// # Examples
3737
///

0 commit comments

Comments
 (0)