Skip to content

Commit f144f29

Browse files
authored
Fix spelling in doc comments (#274)
1 parent 919f145 commit f144f29

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

libduckdb-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mod openssl;
77
/// `cfg!(windows)`, since the latter does not properly handle cross-compilation
88
///
99
/// Note that there is no way to know at compile-time which system we'll be
10-
/// targetting, and this test must be made at run-time (of the build script) See
10+
/// targeting, and this test must be made at run-time (of the build script) See
1111
/// https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
1212
#[allow(dead_code)]
1313
fn win_target() -> bool {

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub enum Error {
8181
/// given, the 2nd is how many were expected.
8282
InvalidParameterCount(usize, usize),
8383

84-
/// Apppend Error
84+
/// Append Error
8585
AppendError,
8686
}
8787

src/types/value.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub enum Value {
3636
Double(f64),
3737
/// The value is a Decimal.
3838
Decimal(Decimal),
39-
/// The value is a timestap.
39+
/// The value is a timestamp.
4040
Timestamp(TimeUnit, i64),
4141
/// The value is a text string.
4242
Text(String),

src/types/value_ref.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ pub enum ValueRef<'a> {
3939
HugeInt(i128),
4040
/// The value is a unsigned tiny integer.
4141
UTinyInt(u8),
42-
/// The value is a usigned small integer.
42+
/// The value is a unsigned small integer.
4343
USmallInt(u16),
44-
/// The value is a usigned integer.
44+
/// The value is a unsigned integer.
4545
UInt(u32),
46-
/// The value is a usigned big integer.
46+
/// The value is a unsigned big integer.
4747
UBigInt(u64),
4848
/// The value is a f32.
4949
Float(f32),
5050
/// The value is a f64.
5151
Double(f64),
5252
/// The value is a decimal
5353
Decimal(Decimal),
54-
/// The value is a timestap.
54+
/// The value is a timestamp.
5555
Timestamp(TimeUnit, i64),
5656
/// The value is a text string.
5757
Text(&'a [u8]),

src/vtab/excel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl VTab for ExcelVTab {
110110
);
111111
}
112112
_ => {
113-
panic!("Shouldn't happend");
113+
panic!("Shouldn't happen");
114114
}
115115
}
116116
}

0 commit comments

Comments
 (0)