From 740a6ffd1c0ae00beda98934c86d63e5a1c31fc1 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Thu, 21 Feb 2019 12:20:48 -0600 Subject: [PATCH] nit --- initial-reverse/README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/initial-reverse/README.md b/initial-reverse/README.md index cf2d732..0f058ce 100644 --- a/initial-reverse/README.md +++ b/initial-reverse/README.md @@ -92,10 +92,7 @@ return code 1. - **How to print error messages:** On any error, you should print the error to the screen using `fprintf()`, and send the error message to `stderr` (standard error) and not `stdout` (standard output). This -is accomplished in your C code as follows: -``` -fprintf(stderr, "whatever the error message is\n"); -``` +is accomplished in your C code as follows: `fprintf(stderr, "whatever the error message is\n");` ## Useful Routines