diff options
| author | Ralf Jung <post@ralfj.de> | 2025-04-07 17:00:28 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2025-04-07 17:00:28 +0200 |
| commit | 0da46d1065eb53226211e7dea4ba6103607d6def (patch) | |
| tree | 9907f5f04c3ad974517e3c5bae38c176f0192af2 | |
| parent | da0b9a2b89d257f3198f491fdecc5a20a2e686b9 (diff) | |
| download | rust-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.rs | 2 |
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); |
