about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-04-07 17:00:28 +0200
committerRalf Jung <post@ralfj.de>2025-04-07 17:00:28 +0200
commit0da46d1065eb53226211e7dea4ba6103607d6def (patch)
tree9907f5f04c3ad974517e3c5bae38c176f0192af2
parentda0b9a2b89d257f3198f491fdecc5a20a2e686b9 (diff)
downloadrust-0da46d1065eb53226211e7dea4ba6103607d6def.tar.gz
rust-0da46d1065eb53226211e7dea4ba6103607d6def.zip
targest → targets (spotted as I had the same typo)
-rw-r--r--src/tools/miri/tests/pass/tls/tls_leak_main_thread_allowed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/tests/pass/tls/tls_leak_main_thread_allowed.rs b/src/tools/miri/tests/pass/tls/tls_leak_main_thread_allowed.rs
index 341b2280e01..abc0968f7c4 100644
--- a/src/tools/miri/tests/pass/tls/tls_leak_main_thread_allowed.rs
+++ b/src/tools/miri/tests/pass/tls/tls_leak_main_thread_allowed.rs
@@ -13,7 +13,7 @@ pub fn main() {
     TLS.set(Some(Box::leak(Box::new(123))));
 
     // We can only ignore leaks on targets that use `#[thread_local]` statics to implement
-    // `thread_local!`. Ignore the test on targest that don't.
+    // `thread_local!`. Ignore the test on targets that don't.
     if cfg!(target_thread_local) {
         thread_local! {
             static TLS_KEY: Cell<Option<&'static i32>> = Cell::new(None);