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;
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) ]
1313fn win_target ( ) -> bool {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ) ,
Original file line number Diff line number Diff 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 ] ) ,
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments