]> Kevux Git Server - fll/commitdiff
Cleanup: Use number instead of word in FSS Basic Read help.
authorKevin Day <thekevinday@gmail.com>
Wed, 5 May 2021 05:24:12 +0000 (00:24 -0500)
committerKevin Day <thekevinday@gmail.com>
Wed, 5 May 2021 05:24:12 +0000 (00:24 -0500)
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

index a08253b111ed964f7742156cf589632bde1d487d..27b77fec3b4ac8f990414871608a9d2ace240829 100644 (file)
@@ -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]);