about summary refs log tree commit diff
path: root/library/std/src/sys_common
diff options
context:
space:
mode:
authorMotoki Ikeda <hiyoko3m.tech@gmail.com>2021-03-14 16:39:29 +0900
committerMotoki Ikeda <hiyoko3m.tech@gmail.com>2021-03-14 16:39:29 +0900
commit5ec0540da506fa9d3c0ca2aa3cca65055752e500 (patch)
tree3c317831d02c66388e846df2a85f9f0e2bd33bca /library/std/src/sys_common
parent71a784d763f78d91ac88e34a72405dfbba17f336 (diff)
downloadrust-5ec0540da506fa9d3c0ca2aa3cca65055752e500.tar.gz
rust-5ec0540da506fa9d3c0ca2aa3cca65055752e500.zip
Fix a typo in thread_local_dtor.rs
Diffstat (limited to 'library/std/src/sys_common')
-rw-r--r--library/std/src/sys_common/thread_local_dtor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys_common/thread_local_dtor.rs b/library/std/src/sys_common/thread_local_dtor.rs
index 6f5ebf4a271..f9971fb6f21 100644
--- a/library/std/src/sys_common/thread_local_dtor.rs
+++ b/library/std/src/sys_common/thread_local_dtor.rs
@@ -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.