From e9b0ccd03bfc03648e90285d248daa885bb7c1b7 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Wed, 11 Apr 2018 13:49:53 -0500 Subject: [PATCH] typo --- concurrency-mapreduce/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/concurrency-mapreduce/README.md b/concurrency-mapreduce/README.md index 6aaa30a..e539858 100644 --- a/concurrency-mapreduce/README.md +++ b/concurrency-mapreduce/README.md @@ -27,10 +27,10 @@ There are three specific objectives to this assignment: ## Background -To understand how to make progress on this project, you should understand the -basics of thread creation, mutual exclusion (with locks), and -signaling/waiting (with condition variables). These are described in the -following book chapters: +To understand how to make progress on any project that involves concurrency, +you should understand the basics of thread creation, mutual exclusion (with +locks), and signaling/waiting (with condition variables). These are described +in the following book chapters: - [Intro to Threads](http://pages.cs.wisc.edu/~remzi/OSTEP/threads-intro.pdf) - [Threads API](http://pages.cs.wisc.edu/~remzi/OSTEP/threads-api.pdf)