From be003ddd67c4baf090154e970dcb9d95aa4c2226 Mon Sep 17 00:00:00 2001 From: lsen <67870002+OmkarBhosekar7711@users.noreply.github.com> Date: Tue, 24 Jun 2025 13:44:49 +0530 Subject: [PATCH 1/2] Update instructions.append.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix typo and clarify instructions in usage text - Corrected a typo ("treat is" ➝ "treat it") in the program instructions. - Added the word "code" at the end of the sentence "exit with a non-zero status" for clarity. --- .../practice/error-handling/.docs/instructions.append.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/error-handling/.docs/instructions.append.md b/exercises/practice/error-handling/.docs/instructions.append.md index f7c8e93d..99bb0a0c 100644 --- a/exercises/practice/error-handling/.docs/instructions.append.md +++ b/exercises/practice/error-handling/.docs/instructions.append.md @@ -12,5 +12,5 @@ This is different from passing no arguments at all. `./program` -If your program is run with exactly one argument (even if it is an empty string), treat is as a person's name and print a greeting message. -If it is run with zero arguments or more than one argument, print an error message and exit with a non-zero status. +If the program is run with exactly one argument (even if it is an empty string), treat it as a person's name and print a greeting message. +If it is run with zero arguments or more than one argument, print an error message and exit with a non-zero status code. From 2da15a728bc5047b362707ed14d089aa1938748f Mon Sep 17 00:00:00 2001 From: lsen <67870002+OmkarBhosekar7711@users.noreply.github.com> Date: Tue, 24 Jun 2025 13:44:49 +0530 Subject: [PATCH 2/2] Update instructions.append.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix typo and clarify instructions in usage text - Corrected a typo ("treat is" ➝ "treat it") in the program instructions. --- .../practice/error-handling/.docs/instructions.append.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/error-handling/.docs/instructions.append.md b/exercises/practice/error-handling/.docs/instructions.append.md index 99bb0a0c..55f05857 100644 --- a/exercises/practice/error-handling/.docs/instructions.append.md +++ b/exercises/practice/error-handling/.docs/instructions.append.md @@ -12,5 +12,5 @@ This is different from passing no arguments at all. `./program` -If the program is run with exactly one argument (even if it is an empty string), treat it as a person's name and print a greeting message. -If it is run with zero arguments or more than one argument, print an error message and exit with a non-zero status code. +If your program is run with exactly one argument (even if it is an empty string), treat it as a person's name and print a greeting message. +If it is run with zero arguments or more than one argument, print an error message and exit with a non-zero status.