targest → targets (spotted as I had the same typo) · rust-lang/rust@0da46d1 (original) (raw)
File tree
1 file changed
lines changed
- src/tools/miri/tests/pass/tls
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -13,7 +13,7 @@ pub fn main() { | ||
13 | 13 | TLS.set(Some(Box::leak(Box::new(123)))); |
14 | 14 | |
15 | 15 | // We can only ignore leaks on targets that use `#[thread_local]` statics to implement |
16 | -// `thread_local!`. Ignore the test on targest that don't. | |
16 | +// `thread_local!`. Ignore the test on targets that don't. | |
17 | 17 | if cfg!(target_thread_local) { |
18 | 18 | thread_local! { |
19 | 19 | static TLS_KEY: Cell<Option<&'static i32>> = Cell::new(None); |