]> Kevux Git Server - fll/commitdiff
Update: IKI Read help message regarding --line parameter.
authorKevin Day <Kevin@kevux.org>
Tue, 10 Dec 2024 04:39:33 +0000 (22:39 -0600)
committerKevin Day <Kevin@kevux.org>
Tue, 10 Dec 2024 04:39:33 +0000 (22:39 -0600)
Make the `--line` parameter help message consistent with recent changes from the 0.6.x stable branch.

level_3/iki_read/c/main/print/message.c

index db24c1b77ca63e3a648e96b7c06d190575f994bb..bccda7c2bd93a0c67d19e41ae4adf873b71f9148 100644 (file)
@@ -20,7 +20,7 @@ extern "C" {
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
     fll_program_print_help_option(print, iki_read_short_content_s, iki_read_long_content_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "Print the Content (default)");
-    fll_program_print_help_option(print, iki_read_short_line_s, iki_read_long_line_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "   Print only the Variables at the given line within the file.");
+    fll_program_print_help_option(print, iki_read_short_line_s, iki_read_long_line_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "   Print only the given line of the output.");
     fll_program_print_help_option(print, iki_read_short_literal_s, iki_read_long_literal_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "Print the entire Variable (Vocabulary, Content, and syntax).");
     fll_program_print_help_option(print, iki_read_short_object_s, iki_read_long_object_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Print the Vocabulary (aka: Object).");
     fll_program_print_help_option(print, iki_read_short_total_s, iki_read_long_total_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "  Print the total number of Variables.");