From 9044f90a44b6c93f9f79db4fce456eedbb0e3603 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 7 Dec 2023 15:56:27 -0500 Subject: [PATCH] adding underscore --- lectures/28_concurrency/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/28_concurrency/README.md b/lectures/28_concurrency/README.md index 6f3d9dd..bd5cfd0 100644 --- a/lectures/28_concurrency/README.md +++ b/lectures/28_concurrency/README.md @@ -140,7 +140,7 @@ private: - So how exactly do we get multiple streams of computation happening simultaneously? There are many choices (may depend on your programming language, operating system, compiler, etc.). - We’ll use the STL thread library (#include <thread>). The new thread begins execution in the provided -function (student thread, in this example). We pass the necessary shared data from the main thread to the +function (student_thread, in this example). We pass the necessary shared data from the main thread to the secondary thread to facilitate communication. ```cpp