From 0dcb94bc53ac4adc2c63c5dddb98e8cb6db66643 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 9 Dec 2024 22:39:33 -0600 Subject: [PATCH] Update: IKI Read help message regarding --line parameter. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/iki_read/c/main/print/message.c b/level_3/iki_read/c/main/print/message.c index db24c1b..bccda7c 100644 --- a/level_3/iki_read/c/main/print/message.c +++ b/level_3/iki_read/c/main/print/message.c @@ -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."); -- 1.8.3.1