diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-06-13 07:02:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-13 07:02:28 +0200 |
| commit | aee8e10a26ea1dd76c2ea11ace36f642c9f2ac50 (patch) | |
| tree | b2d22b68a400d17c92a198dfb39e00f4ec0be722 /library/std | |
| parent | b7706e891d60f63d61a1a90e6c25521699c6e74e (diff) | |
| parent | 69de7ca199125df72c518ef6f965ae647acac62c (diff) | |
| download | rust-aee8e10a26ea1dd76c2ea11ace36f642c9f2ac50.tar.gz rust-aee8e10a26ea1dd76c2ea11ace36f642c9f2ac50.zip | |
Rollup merge of #112558 - eltociear:patch-21, r=thomcc
Fix typo in mod.rs assoicated -> associated
Diffstat (limited to 'library/std')
| -rw-r--r-- | library/std/src/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index d9973185bc4..1230bb5deed 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -195,7 +195,7 @@ mod local; cfg_if::cfg_if! { if #[cfg(test)] { - // Avoid duplicating the global state assoicated with thread-locals between this crate and + // Avoid duplicating the global state associated with thread-locals between this crate and // realstd. Miri relies on this. pub use realstd::thread::{local_impl, AccessError, LocalKey}; } else { |
