summaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2024-12-13 19:39:34 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2024-12-13 19:39:34 +0100
commited6561685c8b37141a17459655774ec3386dd021 (patch)
tree0986870b964911c9386c5342759ef6adbba8032a /coreutils
parent96a230f17ba6cb1a7ad1e383d595424da02e87fc (diff)
cut: tweak comments
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/cut.c5
1 files 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";