From c3f2d8e718ff468e7354a7b4d567ef9fb4ad89e1 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 5 May 2021 00:24:12 -0500 Subject: [PATCH] Cleanup: Use number instead of word in FSS Basic Read help. While committing the FSS Basic List changes to be in sync with this, I noticed that I had "..start at 0 instead of one..". This is inconsistent. I either need to use both words ("zero" and "one") or both numbers ("0" and "1"). I opted to use the numbers. --- level_3/fss_basic_read/c/fss_basic_read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/fss_basic_read/c/fss_basic_read.c b/level_3/fss_basic_read/c/fss_basic_read.c index a08253b..27b77fe 100644 --- a/level_3/fss_basic_read/c/fss_basic_read.c +++ b/level_3/fss_basic_read/c/fss_basic_read.c @@ -46,7 +46,7 @@ extern "C" { fprintf(output.stream, "%c", f_string_eol_s[0]); - fprintf(output.stream, " All numeric positions (indexes) start at 0 instead of one.%c", f_string_eol_s[0]); + fprintf(output.stream, " All numeric positions (indexes) start at 0 instead of 1.%c", f_string_eol_s[0]); fprintf(output.stream, " For example, a file of 17 lines would range from 0 to 16.%c", f_string_eol_s[0]); fprintf(output.stream, "%c", f_string_eol_s[0]); -- 1.8.3.1