From 8bb10acec98500e2c6eb566d8f2eb5be75782a8d Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Mon, 27 Sep 2021 11:46:02 -0500 Subject: [PATCH] nit in README --- processes-shell/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/processes-shell/README.md b/processes-shell/README.md index 943610b..bacb357 100644 --- a/processes-shell/README.md +++ b/processes-shell/README.md @@ -216,10 +216,10 @@ message whenever you encounter an error of any type: The error message should be printed to stderr (standard error), as shown above. -After ~~*any*~~ most errors, your shell simply *continue processing* after -printing the one and only error message. However, if the shell is invoked with -more than one file, or if the shell is passed a bad batch file, it should exit -by calling `exit(1)`. +After most errors, your shell simply *continue processing* after +printing the one and only error message. However, if the shell is +invoked with more than one file, or if the shell is passed a bad batch +file, it should exit by calling `exit(1)`. There is a difference between errors that your shell catches and those that the program catches. Your shell should catch all the syntax errors specified