File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -448,7 +448,7 @@ This version was skipped due to some problems on the release workflow.
448
448
* The ` ParseCallbacks::generated_name_override ` method now receives ` ItemInfo<'_> ` as
449
449
argument instead of a ` &str ` .
450
450
* Updated the ` clang-sys ` crate version to 1.4.0 to support clang 15.
451
- * The return type is now ommited in signatures of functions returning ` void ` .
451
+ * The return type is now omitted in signatures of functions returning ` void ` .
452
452
* Updated the ` clap ` dependency for ` bindgen-cli ` to 4.
453
453
* Rewrote the ` bindgen-cli ` argument parser which could introduce unexpected
454
454
behavior changes.
@@ -1485,7 +1485,7 @@ Released 2017/10/27
1485
1485
We <3 folks who [ help us find and fix issues via fuzzing] [ fuzzing ] ! * hint
1486
1486
hint*
1487
1487
1488
- * Added experimental support for the ` thiscall ` ABI when targetting Rust
1488
+ * Added experimental support for the ` thiscall ` ABI when targeting Rust
1489
1489
nightly. [ #1065 ] [ ]
1490
1490
1491
1491
## Changed
Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ struct BindgenCommand {
376
376
/// Prefix the name of exported symbols.
377
377
#[ arg( long) ]
378
378
prefix_link_name : Option < String > ,
379
- /// Makes generated bindings `pub` only for items if the items are publically accessible in C++.
379
+ /// Makes generated bindings `pub` only for items if the items are publicly accessible in C++.
380
380
#[ arg( long) ]
381
381
respect_cxx_access_specs : bool ,
382
382
/// Always translate enum integer types to native Rust integer types.
Original file line number Diff line number Diff line change @@ -876,7 +876,7 @@ impl Cursor {
876
876
unsafe { clang_getCXXAccessSpecifier ( self . x ) }
877
877
}
878
878
879
- /// Is the cursor's referent publically accessible in C++?
879
+ /// Is the cursor's referent publicly accessible in C++?
880
880
///
881
881
/// Returns true if self.access_specifier() is `CX_CXXPublic` or
882
882
/// `CX_CXXInvalidAccessSpecifier`.
Original file line number Diff line number Diff line change @@ -948,7 +948,7 @@ pub(crate) struct Base {
948
948
pub ( crate ) kind : BaseKind ,
949
949
/// Name of the field in which this base should be stored.
950
950
pub ( crate ) field_name : String ,
951
- /// Whether this base is inherited from publically .
951
+ /// Whether this base is inherited from publicly .
952
952
pub ( crate ) is_pub : bool ,
953
953
}
954
954
@@ -978,7 +978,7 @@ impl Base {
978
978
true
979
979
}
980
980
981
- /// Whether this base is inherited from publically .
981
+ /// Whether this base is inherited from publicly .
982
982
pub ( crate ) fn is_public ( & self ) -> bool {
983
983
self . is_pub
984
984
}
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ fn duplicated_macro_diagnostic(
489
489
#[ cfg( feature = "experimental" ) ]
490
490
// FIXME (pvdrz & amanjeev): This diagnostic message shows way too often to be actually
491
491
// useful. We have to change the logic where this function is called to be able to emit this
492
- // message only when the duplication is an actuall issue.
492
+ // message only when the duplication is an actual issue.
493
493
//
494
494
// If I understood correctly, `bindgen` ignores all `#undef` directives. Meaning that this:
495
495
// ```c
You can’t perform that action at this time.
0 commit comments