From ed6561685c8b37141a17459655774ec3386dd021 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 13 Dec 2024 19:39:34 +0100 Subject: cut: tweak comments Signed-off-by: Denys Vlasenko --- coreutils/cut.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/coreutils/cut.c b/coreutils/cut.c index e33626d7f..e624ab4a5 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c @@ -53,9 +53,8 @@ //usage: "\n -O SEP Output field delimeter (default = -d)" //usage: ) //usage: ) -//TODO: --output-delimiter=SEP //usage: "\n -n Ignored" -//(manpage:-n with -b: don't split multibyte characters) +//(manpage:-n with -b: don't split multibyte characters) //usage: //usage:#define cut_example_usage //usage: "$ echo \"Hello world\" | cut -f 1 -d ' '\n" @@ -318,7 +317,7 @@ int cut_main(int argc UNUSED_PARAM, char **argv) // bb_simple_error_msg_and_die("expected a list of bytes, characters, or fields"); // ^^^ handled by getopt32 - /* non-field (char or byte) cutting has some special handling */ + /* non-field (char or byte) cutting has some special handling */ if (!(opt & (OPT_FIELDS|OPT_REGEX))) { static const char _op_on_field[] ALIGN1 = " only when operating on fields"; -- cgit v1.2.3-55-g6feb