Skip to content

Commit

Permalink
Fix typo: Exampels -> Examples (#4924)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 authored Feb 22, 2025
1 parent b39ef58 commit cc97951
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 @@ -2388,7 +2388,7 @@ static const RzCmdDescDetailEntry slash_z_Regex_space_Flags_detail_entries[] = {
{ 0 },
};

static const RzCmdDescDetailEntry slash_z_Exampels_detail_entries[] = {
static const RzCmdDescDetailEntry slash_z_Examples_detail_entries[] = {
{ .text = "/z (ABC*)", .arg_str = NULL, .comment = "Search the exact string \"(ABC*)\"." },
{ .text = "/z (ABC*)D li", .arg_str = NULL, .comment = "Search the exact string \"(ABC*)D\" but case insensitive." },
{ .text = "/z \\\\d\\\\sC*\\\\w ri", .arg_str = NULL, .comment = "Search the regular expression \"\\d\\sC*\\w\" but case insensitive." },
Expand All @@ -2398,7 +2398,7 @@ static const RzCmdDescDetailEntry slash_z_Exampels_detail_entries[] = {
static const RzCmdDescDetail slash_z_details[] = {
{ .name = "Encodings", .entries = slash_z_Encodings_detail_entries },
{ .name = "Regex Flags", .entries = slash_z_Regex_space_Flags_detail_entries },
{ .name = "Exampels", .entries = slash_z_Exampels_detail_entries },
{ .name = "Examples", .entries = slash_z_Examples_detail_entries },
{ 0 },
};
static const RzCmdDescHelp slash_z_help = {
Expand Down
2 changes: 1 addition & 1 deletion librz/core/cmd_descs/cmd_search.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ commands:
comment: "Extended regular expression."
- text: "m"
comment: "Multiline regular expression (equivalent flag: PCRE2_MULTILINE)"
- name: "Exampels"
- name: "Examples"
entries:
- text: "/z (ABC*)"
comment: "Search the exact string \"(ABC*)\"."
Expand Down

0 comments on commit cc97951

Please sign in to comment.