Skip to content

Commit 19d36d4

Browse files
committed
Address review comments.
1 parent 2468fb2 commit 19d36d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libbindgen/src/clang.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1278,7 +1278,7 @@ impl EvalResult {
12781278
/// Create a dummy EvalResult.
12791279
pub fn new(_: Cursor) -> Self {
12801280
EvalResult {
1281-
x: ::std::ptr::null_mut(),
1281+
x: ptr::null_mut(),
12821282
}
12831283
}
12841284

libbindgen/src/ir/ty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl Type {
123123
Self::new(Some(name), None, kind, false)
124124
}
125125

126-
/// Is this an floating point type?
126+
/// Is this a floating point type?
127127
pub fn is_float(&self) -> bool {
128128
match self.kind {
129129
TypeKind::Float(..) => true,

0 commit comments

Comments
 (0)