Skip to content

Commit c86bcad

Browse files
authored
Merge branch 'main' into main
2 parents ab95fd0 + 5f7aa4b commit c86bcad

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

bindgen/options/cli.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -480,28 +480,28 @@ struct BindgenCommand {
480480
/// Use DSTs to represent structures with flexible array members.
481481
#[arg(long)]
482482
flexarray_dst: bool,
483-
/// Derive custom traits on any kind of type. 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 any kind of type. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a comma-separated list of derive macros.
484484
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_derive)]
485485
with_derive_custom: Vec<(Vec<String>, String)>,
486-
/// 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.
486+
/// Derive custom traits on a `struct`. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a comma-separated list of derive macros.
487487
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_derive)]
488488
with_derive_custom_struct: Vec<(Vec<String>, String)>,
489-
/// 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.
489+
/// Derive custom traits on an `enum`. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a comma-separated list of derive macros.
490490
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_derive)]
491491
with_derive_custom_enum: Vec<(Vec<String>, String)>,
492-
/// 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+
/// Derive custom traits on a `union`. The CUSTOM value must be of the shape REGEX=DERIVE where DERIVE is a comma-separated list of derive macros.
493493
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_derive)]
494494
with_derive_custom_union: Vec<(Vec<String>, String)>,
495-
/// Add custom attributes on any kind of type. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a coma-separated list of attributes.
495+
/// Add custom attributes on any kind of type. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a comma-separated list of attributes.
496496
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_attribute)]
497497
with_attribute_custom: Vec<(Vec<String>, String)>,
498-
/// 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.
498+
/// Add custom attributes on a `struct`. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a comma-separated list of attributes.
499499
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_attribute)]
500500
with_attribute_custom_struct: Vec<(Vec<String>, String)>,
501-
/// 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.
501+
/// Add custom attributes on an `enum`. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a comma-separated list of attributes.
502502
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_attribute)]
503503
with_attribute_custom_enum: Vec<(Vec<String>, String)>,
504-
/// 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.
504+
/// Add custom attributes on a `union`. The CUSTOM value must be of the shape REGEX=ATTRIBUTE where ATTRIBUTE is a comma-separated list of attributes.
505505
#[arg(long, value_name = "CUSTOM", value_parser = parse_custom_attribute)]
506506
with_attribute_custom_union: Vec<(Vec<String>, String)>,
507507
/// Generate wrappers for `static` and `static inline` functions.

0 commit comments

Comments
 (0)