Skip to content

Commit a152f28

Browse files
jtragliaemilio
authored andcommitted
Fix several typos
1 parent aa63496 commit a152f28

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

bindgen-integration/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ fn setup_wrap_static_fns_test() {
279279

280280
bindings
281281
.write_to_file(out_rust_file)
282-
.expect("Cound not write bindings to the Rust file");
282+
.expect("Could not write bindings to the Rust file");
283283
}
284284

285285
fn main() {

bindgen/clang.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ impl Cursor {
874874
unsafe { clang_getCXXAccessSpecifier(self.x) }
875875
}
876876

877-
/// Is the cursor's referrent publically accessible in C++?
877+
/// Is the cursor's referent publically accessible in C++?
878878
///
879879
/// Returns true if self.access_specifier() is `CX_CXXPublic` or
880880
/// `CX_CXXInvalidAccessSpecifier`.

bindgen/codegen/serialize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ impl<'a> CSerialize<'a> for Function {
8181

8282
let name = self.name();
8383

84-
// Function argoments stored as `(name, type_id)` tuples.
84+
// Function arguments stored as `(name, type_id)` tuples.
8585
let args = {
8686
let mut count = 0;
8787

bindgen/ir/annotations.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::str::FromStr;
88

99
use crate::clang;
1010

11-
/// What kind of visibility modifer should be used for a struct or field?
11+
/// What kind of visibility modifier should be used for a struct or field?
1212
#[derive(Copy, PartialEq, Eq, PartialOrd, Ord, Clone, Debug)]
1313
pub enum FieldVisibilityKind {
1414
/// Fields are marked as private, i.e., struct Foo {bar: bool}

bindgen/ir/comp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ pub(crate) trait FieldMethods {
147147
/// If this is a bitfield, how many bits does it need?
148148
fn bitfield_width(&self) -> Option<u32>;
149149

150-
/// Is this feild declared public?
150+
/// Is this field declared public?
151151
fn is_public(&self) -> bool;
152152

153153
/// Get the annotations for this field.

bindgen/ir/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use std::mem;
3636
#[derive(Debug, Copy, Clone, Eq, PartialOrd, Ord, Hash)]
3737
pub(crate) struct ItemId(usize);
3838

39-
/// Declare a newtype around `ItemId` with convesion methods.
39+
/// Declare a newtype around `ItemId` with conversion methods.
4040
macro_rules! item_id_newtype {
4141
(
4242
$( #[$attr:meta] )*

bindgen/ir/item_kind.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub(crate) enum ItemKind {
2626
}
2727

2828
impl ItemKind {
29-
/// Get a reference to this `ItemKind`'s underying `Module`, or `None` if it
29+
/// Get a reference to this `ItemKind`'s underlying `Module`, or `None` if it
3030
/// is some other kind.
3131
pub(crate) fn as_module(&self) -> Option<&Module> {
3232
match *self {
@@ -50,7 +50,7 @@ impl ItemKind {
5050
self.as_module().is_some()
5151
}
5252

53-
/// Get a reference to this `ItemKind`'s underying `Function`, or `None` if
53+
/// Get a reference to this `ItemKind`'s underlying `Function`, or `None` if
5454
/// it is some other kind.
5555
pub(crate) fn as_function(&self) -> Option<&Function> {
5656
match *self {
@@ -64,13 +64,13 @@ impl ItemKind {
6464
self.as_function().is_some()
6565
}
6666

67-
/// Get a reference to this `ItemKind`'s underying `Function`, or panic if
67+
/// Get a reference to this `ItemKind`'s underlying `Function`, or panic if
6868
/// it is some other kind.
6969
pub(crate) fn expect_function(&self) -> &Function {
7070
self.as_function().expect("Not a function")
7171
}
7272

73-
/// Get a reference to this `ItemKind`'s underying `Type`, or `None` if
73+
/// Get a reference to this `ItemKind`'s underlying `Type`, or `None` if
7474
/// it is some other kind.
7575
pub(crate) fn as_type(&self) -> Option<&Type> {
7676
match *self {
@@ -79,7 +79,7 @@ impl ItemKind {
7979
}
8080
}
8181

82-
/// Get a mutable reference to this `ItemKind`'s underying `Type`, or `None`
82+
/// Get a mutable reference to this `ItemKind`'s underlying `Type`, or `None`
8383
/// if it is some other kind.
8484
pub(crate) fn as_type_mut(&mut self) -> Option<&mut Type> {
8585
match *self {
@@ -93,13 +93,13 @@ impl ItemKind {
9393
self.as_type().is_some()
9494
}
9595

96-
/// Get a reference to this `ItemKind`'s underying `Type`, or panic if it is
96+
/// Get a reference to this `ItemKind`'s underlying `Type`, or panic if it is
9797
/// some other kind.
9898
pub(crate) fn expect_type(&self) -> &Type {
9999
self.as_type().expect("Not a type")
100100
}
101101

102-
/// Get a reference to this `ItemKind`'s underying `Var`, or `None` if it is
102+
/// Get a reference to this `ItemKind`'s underlying `Var`, or `None` if it is
103103
/// some other kind.
104104
pub(crate) fn as_var(&self) -> Option<&Var> {
105105
match *self {

bindgen/ir/objc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub(crate) struct ObjCInterface {
3939
/// The direct parent for this interface.
4040
pub(crate) parent_class: Option<ItemId>,
4141

42-
/// List of the methods defined in this interfae
42+
/// List of the methods defined in this interface
4343
methods: Vec<ObjCMethod>,
4444

4545
class_methods: Vec<ObjCMethod>,
@@ -137,7 +137,7 @@ impl ObjCInterface {
137137
CXCursor_ObjCClassRef => {
138138
if cursor.kind() == CXCursor_ObjCCategoryDecl {
139139
// We are actually a category extension, and we found the reference
140-
// to the original interface, so name this interface approriately
140+
// to the original interface, so name this interface appropriately
141141
interface.name = c.spelling();
142142
interface.category = Some(cursor.spelling());
143143
}

bindgen/ir/ty.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ impl Type {
252252
Cow::Owned(name)
253253
}
254254

255-
/// Get this type's santizied name.
255+
/// Get this type's sanitized name.
256256
pub(crate) fn sanitized_name<'a>(
257257
&'a self,
258258
ctx: &BindgenContext,
@@ -498,7 +498,7 @@ fn is_invalid_type_param_invalid_start() {
498498
}
499499

500500
#[test]
501-
fn is_invalid_type_param_invalid_remaing() {
501+
fn is_invalid_type_param_invalid_remaining() {
502502
let ty = Type::new(Some("foo-".into()), None, TypeKind::TypeParam, false);
503503
assert!(ty.is_invalid_type_param())
504504
}
@@ -1092,7 +1092,7 @@ impl Type {
10921092
Item::from_ty_or_ref(inner, location, None, ctx);
10931093
if inner_id == potential_id {
10941094
warn!(
1095-
"Generating oqaque type instead of self-referential \
1095+
"Generating opaque type instead of self-referential \
10961096
typedef");
10971097
// This can happen if we bail out of recursive situations
10981098
// within the clang parsing.

bindgen/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ impl CodegenConfig {
144144
self.contains(CodegenConfig::VARS)
145145
}
146146

147-
/// Returns true if methds should be generated.
147+
/// Returns true if methods should be generated.
148148
pub fn methods(self) -> bool {
149149
self.contains(CodegenConfig::METHODS)
150150
}

bindgen/options/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ options! {
508508
constified_enums: RegexSet {
509509
methods: {
510510
regex_option! {
511-
/// Mark the given `enum` as a set o integer constants.
511+
/// Mark the given `enum` as a set of integer constants.
512512
///
513513
/// This is similar to the [`Builder::constified_enum_module`] style, but the
514514
/// constants are generated in the current module instead of in a new module.
@@ -1843,7 +1843,7 @@ options! {
18431843
},
18441844
as_args: "--dynamic-loading",
18451845
},
1846-
/// Whether to equire successful linkage for all routines in a shared library.
1846+
/// Whether to require successful linkage for all routines in a shared library.
18471847
dynamic_link_require_all: bool {
18481848
methods: {
18491849
/// Set whether to require successful linkage for all routines in a shared library.
@@ -1908,7 +1908,7 @@ options! {
19081908
},
19091909
as_args: "--c-naming",
19101910
},
1911-
/// Wether to always emit explicit padding fields.
1911+
/// Whether to always emit explicit padding fields.
19121912
force_explicit_padding: bool {
19131913
methods: {
19141914
/// Set whether to always emit explicit padding fields.

book/src/cpp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ cannot translate into Rust:
7474

7575
* Many C++ specific aspects of calling conventions. For example in the Itanium abi types that are
7676
"[non trivial for the purposes of calls](https://itanium-cxx-abi.github.io/cxx-abi/abi.html#non-trivial)"
77-
should be passed by pointer, even if they are otherwise eligable to be passed in a register.
77+
should be passed by pointer, even if they are otherwise eligible to be passed in a register.
7878
Similarly in both the Itanium and MSVC ABIs such types are returned by "hidden parameter", much like
7979
large structs in C that would not fit into a register. This also applies to types with any base classes
8080
in the MSVC ABI (see [x64 calling convention](https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention?view=msvc-170#return-values)).

book/src/non-system-libraries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ int hello();
1414

1515
Given that the library has not been compiled yet, we need to modify the
1616
`build.rs` build script to compile the `hello.c` source file into a static
17-
libary:
17+
library:
1818

1919
```rust,ignore
2020
extern crate bindgen;

book/src/objc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ objc::runtime::Object` (the pointer to the objective-c instance). The trait
1818
`IFoo` is needed to allow for the generated inheritance.
1919

2020
Functions that use or return objective-c pointers of instance `Foo` will return
21-
`Foo`. The reason this works is beacuse `Foo` represented as `transparent`.
21+
`Foo`. The reason this works is because `Foo` represented as `transparent`.
2222
This will be helpful for a lot of objective-c frameworks however there are some
2323
cases where functions return `instancetype` which is a type alias for `id` so
2424
an occasional `foo.0` may be required. An example of this would in the UIKit

0 commit comments

Comments
 (0)