From 6e5d7696ac3d30cc0b94eac19aa5f518f99c16a8 Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 11 Feb 2022 12:13:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- book/contents/advance/concurrency-with-threads/thread.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/advance/concurrency-with-threads/thread.md b/book/contents/advance/concurrency-with-threads/thread.md index c22ade54..95805e26 100644 --- a/book/contents/advance/concurrency-with-threads/thread.md +++ b/book/contents/advance/concurrency-with-threads/thread.md @@ -300,7 +300,7 @@ after wait after wait ``` -## 线程局部变量(Thread Loval Variable) +## 线程局部变量(Thread Local Variable) 对于多线程编程,线程局部变量在一些场景下非常有用,而 Rust 通过标准库和三方库对此进行了支持。 #### 标准库 thread_local