diff --git a/docs/csharp/fundamentals/tutorials/file-based-programs.md b/docs/csharp/fundamentals/tutorials/file-based-programs.md index d82486e034f74..c963ff9c6550e 100644 --- a/docs/csharp/fundamentals/tutorials/file-based-programs.md +++ b/docs/csharp/fundamentals/tutorials/file-based-programs.md @@ -142,7 +142,7 @@ That handles command line arguments correctly. Now, add the code to handle readi } ``` - The preceding code reads the console input until either a blank line or a `null` is read. (The method returns `null` if the input stream is closed by typing ctrl+C.) + The preceding code reads the console input until either a blank line or a `null` is read. (The method returns `null` if the input stream is closed by typing ctrl+C.) 1. Test reading standard input by creating a new text file in the same folder. Name the file `input.txt` and add the following lines: