Fix a typo in thread_local_dtor.rs

This commit is contained in:
Motoki Ikeda 2021-03-14 16:39:29 +09:00
parent 71a784d763
commit 5ec0540da5
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
//! Thread-local destructor
//!
//! Besides thread-local "keys" (pointer-sized non-adressable thread-local store
//! Besides thread-local "keys" (pointer-sized non-addressable thread-local store
//! with an associated destructor), many platforms also provide thread-local
//! destructors that are not associated with any particular data. These are
//! often more efficient.