Skip to content

Commit

Permalink
Fix :? (#4793)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy authored Dec 25, 2024
1 parent 0cabfd2 commit 56f834d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions librz/core/cmd_descs/cmd_descs.c
Original file line number Diff line number Diff line change
Expand Up @@ -19195,7 +19195,7 @@ static const RzCmdDescHelp grep_help = {
static const RzCmdDescDetailEntry specifiers_Table_space_format_space_specifiers_space__oparen__minor_table_spec_greater__cparen__detail_entries[] = {
{ .text = "<col>/sort/<inc|dec>", .arg_str = NULL, .comment = "Sort table by column <col> in increasing or decreasing order." },
{ .text = "<col>/sortlen/<inc|dec>", .arg_str = NULL, .comment = "Sort table length of column <col> in increasing or decreasing order." },
{ .text = "<col>/cols[/<col2>[/<colN>...]", .arg_str = NULL, .comment = "Show only specified columns in the table." },
{ .text = "<col>/cols[/<col2>[/<col3>...]]", .arg_str = NULL, .comment = "Show only specified columns in the table." },
{ .text = "<col>", .arg_str = NULL, .comment = "Show only column <col> (it must not have the same name as an output format specifier)." },
{ .text = "<col>/gt/<val>", .arg_str = NULL, .comment = "Grep rows where column <col> is greater than <val>." },
{ .text = "<col>/ge/<val>", .arg_str = NULL, .comment = "Grep rows where column <col> is greater than or equal to <val>." },
Expand Down Expand Up @@ -19236,7 +19236,7 @@ static const RzCmdDescDetail specifiers_details[] = {
};
static const RzCmdDescHelp specifiers_help = {
.summary = "Command specifiers (table-output only for now)",
.usage = "<command>[:<table_spec>[:<table_spec>:...]:<output_spec>]",
.usage = "<command>[:<table_spec>[:<table_spec>...]][:<output_spec>]",
.options = "[?]",
.details = specifiers_details,
};
Expand Down
4 changes: 2 additions & 2 deletions librz/core/cmd_descs/cmd_descs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -564,15 +564,15 @@ commands:
options: "[?]"
summary: Command specifiers (table-output only for now)
type: RZ_CMD_DESC_TYPE_FAKE
usage: "<command>[:<table_spec>[:<table_spec>:...]:<output_spec>]"
usage: "<command>[:<table_spec>[:<table_spec>...]][:<output_spec>]"
details:
- name: Table format specifiers (<table_spec>)
entries:
- text: "<col>/sort/<inc|dec>"
comment: Sort table by column <col> in increasing or decreasing order.
- text: "<col>/sortlen/<inc|dec>"
comment: Sort table length of column <col> in increasing or decreasing order.
- text: "<col>/cols[/<col2>[/<colN>...]"
- text: "<col>/cols[/<col2>[/<col3>...]]"
comment: Show only specified columns in the table.
- text: "<col>"
comment: Show only column <col> (it must not have the same name as an output format specifier).
Expand Down

0 comments on commit 56f834d

Please sign in to comment.