From 37ca7057f4e9391dee6687a1c87282ab74e1c75c Mon Sep 17 00:00:00 2001 From: Github22799 <31520065+Github22799@users.noreply.github.com> Date: Thu, 9 Jul 2020 10:28:47 +0200 Subject: [PATCH] fixed some typos --- kern/synchprobs/stoplight.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kern/synchprobs/stoplight.c b/kern/synchprobs/stoplight.c index f278c27..5a2e472 100644 --- a/kern/synchprobs/stoplight.c +++ b/kern/synchprobs/stoplight.c @@ -28,7 +28,7 @@ */ /* - * Driver code is in kern/tests/synchprobs.c We will replace that file. This + * Driver code is in kern/test/synchprobs.c We will replace that file. This * file is yours to modify as you see fit. * * You should implement your solution to the stoplight problem below. The @@ -55,7 +55,7 @@ * leaveIntersection(). * * You will probably want to write some helper functions to assist with the - * mappings. Modular arithmetic can help, e.g. a car passing straight through + * mappings. Modular arithmetic can help, e.g. a car turning left through * the intersection entering from direction X will leave to direction (X + 2) * % 4 and pass through quadrants X and (X + 3) % 4. Boo-yah. *