From 43041b28149ff815b06032d8baa98d2517970b3f Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Thu, 21 Feb 2019 12:22:18 -0600 Subject: [PATCH] nit --- initial-reverse/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initial-reverse/README.md b/initial-reverse/README.md index 3cfd64b..a17ef10 100644 --- a/initial-reverse/README.md +++ b/initial-reverse/README.md @@ -106,7 +106,7 @@ easy: `fopen()`, `getline()`, and `fclose()`. For printing (to screen, or to a file), use `fprintf()`. Note that it is easy to write to standard output by passing `stdout` to `fprintf()`; it is also -easy to write to a file by passing in the value returned by `fopen`, e.g., +easy to write to a file by passing in the `FILE *` returned by `fopen`, e.g., `fp=fopen(...); fprintf(fp, ...);`. The routine `malloc()` is useful for memory allocation. Perhaps for