about summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuinn Tucker <qxzcode@users.noreply.github.com>2025-08-19 17:14:26 -0400
committerGitHub <noreply@github.com>2025-08-19 17:14:26 -0400
commit14022c8a9a3c667f24602fae3cbfad9a3ead50b1 (patch)
treed7f8dc72f2f89041beebe32c6b8d16ca8d9c1a73
parentd0841c7decfa4a9cda77c0078c9140036273133f (diff)
downloadrust-14022c8a9a3c667f24602fae3cbfad9a3ead50b1.tar.gz
rust-14022c8a9a3c667f24602fae3cbfad9a3ead50b1.zip
Adjust wording for conciseness
-rw-r--r--library/std/src/thread/local.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/thread/local.rs b/library/std/src/thread/local.rs
index 701ca88e640..e255b383323 100644
--- a/library/std/src/thread/local.rs
+++ b/library/std/src/thread/local.rs
@@ -8,8 +8,8 @@ use crate::fmt;
 
 /// A thread local storage (TLS) key which owns its contents.
 ///
-/// This key uses the fastest possible implementation available to it for the
-/// target platform. It is instantiated with the [`thread_local!`] macro and the
+/// This key uses the fastest implementation available on the target platform.
+/// It is instantiated with the [`thread_local!`] macro and the
 /// primary method is the [`with`] method, though there are helpers to make
 /// working with [`Cell`] types easier.
 ///