Skip to content

Commit 763c8b9

Browse files
DavJCosbyemilio
authored andcommitted
Resolved unenclosed backticks for with_derive_custom_enum, with_attribute_custon_enum
1 parent 97ab915 commit 763c8b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bindgen/options/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ struct BindgenCommand {
480480
/// Derive custom traits on a `struct`. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a coma-separated list of derive macros.
481481
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_derive)]
482482
with_derive_custom_struct: Vec<(Vec<String>, String)>,
483-
/// Derive custom traits on an `enum. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a coma-separated list of derive macros.
483+
/// Derive custom traits on an `enum`. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a coma-separated list of derive macros.
484484
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_derive)]
485485
with_derive_custom_enum: Vec<(Vec<String>, String)>,
486486
/// Derive custom traits on a `union`. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a coma-separated list of derive macros.
@@ -492,7 +492,7 @@ struct BindgenCommand {
492492
/// Add custom attributes on a `struct`. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a coma-separated list of attributes.
493493
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_attribute)]
494494
with_attribute_custom_struct: Vec<(Vec<String>, String)>,
495-
/// Add custom attributes on an `enum. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a coma-separated list of attributes.
495+
/// Add custom attributes on an `enum`. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a coma-separated list of attributes.
496496
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_attribute)]
497497
with_attribute_custom_enum: Vec<(Vec<String>, String)>,
498498
/// Add custom attributes on a `union`. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a coma-separated list of attributes.

0 commit comments

Comments
 (0)