Skip to content

Commit cc97951

Browse files
authored
Fix typo: Exampels -> Examples (#4924)
1 parent b39ef58 commit cc97951

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

librz/core/cmd_descs/cmd_descs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,7 @@ static const RzCmdDescDetailEntry slash_z_Regex_space_Flags_detail_entries[] = {
23882388
{ 0 },
23892389
};
23902390

2391-
static const RzCmdDescDetailEntry slash_z_Exampels_detail_entries[] = {
2391+
static const RzCmdDescDetailEntry slash_z_Examples_detail_entries[] = {
23922392
{ .text = "/z (ABC*)", .arg_str = NULL, .comment = "Search the exact string \"(ABC*)\"." },
23932393
{ .text = "/z (ABC*)D li", .arg_str = NULL, .comment = "Search the exact string \"(ABC*)D\" but case insensitive." },
23942394
{ .text = "/z \\\\d\\\\sC*\\\\w ri", .arg_str = NULL, .comment = "Search the regular expression \"\\d\\sC*\\w\" but case insensitive." },
@@ -2398,7 +2398,7 @@ static const RzCmdDescDetailEntry slash_z_Exampels_detail_entries[] = {
23982398
static const RzCmdDescDetail slash_z_details[] = {
23992399
{ .name = "Encodings", .entries = slash_z_Encodings_detail_entries },
24002400
{ .name = "Regex Flags", .entries = slash_z_Regex_space_Flags_detail_entries },
2401-
{ .name = "Exampels", .entries = slash_z_Exampels_detail_entries },
2401+
{ .name = "Examples", .entries = slash_z_Examples_detail_entries },
24022402
{ 0 },
24032403
};
24042404
static const RzCmdDescHelp slash_z_help = {

librz/core/cmd_descs/cmd_search.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ commands:
753753
comment: "Extended regular expression."
754754
- text: "m"
755755
comment: "Multiline regular expression (equivalent flag: PCRE2_MULTILINE)"
756-
- name: "Exampels"
756+
- name: "Examples"
757757
entries:
758758
- text: "/z (ABC*)"
759759
comment: "Search the exact string \"(ABC*)\"."

0 commit comments

Comments
 (0)