File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ mod openssl;
7
7
/// `cfg!(windows)`, since the latter does not properly handle cross-compilation
8
8
///
9
9
/// 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
11
11
/// https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
12
12
#[ allow( dead_code) ]
13
13
fn win_target ( ) -> bool {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ pub enum Error {
81
81
/// given, the 2nd is how many were expected.
82
82
InvalidParameterCount ( usize , usize ) ,
83
83
84
- /// Apppend Error
84
+ /// Append Error
85
85
AppendError ,
86
86
}
87
87
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub enum Value {
36
36
Double ( f64 ) ,
37
37
/// The value is a Decimal.
38
38
Decimal ( Decimal ) ,
39
- /// The value is a timestap .
39
+ /// The value is a timestamp .
40
40
Timestamp ( TimeUnit , i64 ) ,
41
41
/// The value is a text string.
42
42
Text ( String ) ,
Original file line number Diff line number Diff line change @@ -39,19 +39,19 @@ pub enum ValueRef<'a> {
39
39
HugeInt ( i128 ) ,
40
40
/// The value is a unsigned tiny integer.
41
41
UTinyInt ( u8 ) ,
42
- /// The value is a usigned small integer.
42
+ /// The value is a unsigned small integer.
43
43
USmallInt ( u16 ) ,
44
- /// The value is a usigned integer.
44
+ /// The value is a unsigned integer.
45
45
UInt ( u32 ) ,
46
- /// The value is a usigned big integer.
46
+ /// The value is a unsigned big integer.
47
47
UBigInt ( u64 ) ,
48
48
/// The value is a f32.
49
49
Float ( f32 ) ,
50
50
/// The value is a f64.
51
51
Double ( f64 ) ,
52
52
/// The value is a decimal
53
53
Decimal ( Decimal ) ,
54
- /// The value is a timestap .
54
+ /// The value is a timestamp .
55
55
Timestamp ( TimeUnit , i64 ) ,
56
56
/// The value is a text string.
57
57
Text ( & ' a [ u8 ] ) ,
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ impl VTab for ExcelVTab {
110
110
) ;
111
111
}
112
112
_ => {
113
- panic ! ( "Shouldn't happend " ) ;
113
+ panic ! ( "Shouldn't happen " ) ;
114
114
}
115
115
}
116
116
}
You can’t perform that action at this time.
0 commit comments