aboutsummaryrefslogtreecommitdiff
path: root/ctr-std/src/thread/local.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ctr-std/src/thread/local.rs')
-rw-r--r--ctr-std/src/thread/local.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctr-std/src/thread/local.rs b/ctr-std/src/thread/local.rs
index 40d3280..a170abb 100644
--- a/ctr-std/src/thread/local.rs
+++ b/ctr-std/src/thread/local.rs
@@ -276,7 +276,7 @@ impl<T: 'static> LocalKey<T> {
///
/// This will lazily initialize the value if this thread has not referenced
/// this key yet. If the key has been destroyed (which may happen if this is called
- /// in a destructor), this function will return a `ThreadLocalError`.
+ /// in a destructor), this function will return an [`AccessError`](struct.AccessError.html).
///
/// # Panics
///