Skip to content

Commit 5260c91

Browse files
forcedebugpvdrz
authored andcommitted
chore: fix some typos in comments
Signed-off-by: forcedebug <[email protected]>
1 parent 7e90434 commit 5260c91

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bindgen-tests/tests/headers/constructors.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
class TestOverload {
3-
// This one shouldnt' be generated.
3+
// This one shouldn't be generated.
44
TestOverload();
55
public:
66
TestOverload(int);

bindgen-tests/tests/headers/constructors_1_33.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// bindgen-flags: --rust-target 1.33
22

33
class TestOverload {
4-
// This one shouldnt' be generated.
4+
// This one shouldn't be generated.
55
TestOverload();
66
public:
77
/// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that.

bindgen/ir/comp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ impl CompInfo {
14491449
}
14501450
CXCursor_TemplateTypeParameter => {
14511451
let param = Item::type_param(None, cur, ctx).expect(
1452-
"Item::type_param should't fail when pointing \
1452+
"Item::type_param shouldn't fail when pointing \
14531453
at a TemplateTypeParameter",
14541454
);
14551455
ci.template_params.push(param);

0 commit comments

Comments
 (0)