From e902f0662c70d65d55b88e1ac0de98a1aa4da147 Mon Sep 17 00:00:00 2001 From: Corbin <94539385+Nibroc6@users.noreply.github.com> Date: Sun, 16 Feb 2025 15:30:10 -0500 Subject: [PATCH] Fix count of commands on line 70 in README.md There are 5 commands to support, but line 70 said "More details about each of these four commands are given below." --- hws/online_dating/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/online_dating/README.md b/hws/online_dating/README.md index 3ba79bc..20c5bdb 100644 --- a/hws/online_dating/README.md +++ b/hws/online_dating/README.md @@ -67,7 +67,7 @@ Your program will support these commands: 5. block someone. -More details about each of these four commands are given below. For all four commands, *users.txt* represents the input file, and *output.txt* represents the output file, please do not hardcode the file names into your program, as the actual input/output file may have a different name. You should just use the *argv[]* array to retrieve the name of the input and the output file. Also note that all the expected output files contain an empty line at the end of file, to match with that, you just need to make sure to use *std::endl;* (or just *endl;* if you don't use *std::*) when printing the last line of a file. +More details about each of these five commands are given below. For all five commands, *users.txt* represents the input file, and *output.txt* represents the output file, please do not hardcode the file names into your program, as the actual input/output file may have a different name. You should just use the *argv[]* array to retrieve the name of the input and the output file. Also note that all the expected output files contain an empty line at the end of file, to match with that, you just need to make sure to use *std::endl;* (or just *endl;* if you don't use *std::*) when printing the last line of a file. **Note**: for all the commands, you can assume the phone numbers (used in the commands) are valid and are corresponding to an existing account.