From: Kevin Day Date: Wed, 5 May 2021 05:24:12 +0000 (-0500) Subject: Cleanup: Use number instead of word in FSS Basic Read help. X-Git-Tag: 0.5.4~51 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=c3f2d8e718ff468e7354a7b4d567ef9fb4ad89e1;p=fll 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. --- 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]);