Skip to content

Commit 22a41ed

Browse files
committed
fix typo
1 parent ab55aed commit 22a41ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/teeos/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub struct _CLongDouble(pub u128);
6262

6363
// long double in C means A float point value, which has 128bit length.
6464
// but some bit maybe not used, so the really length of long double could be 80(x86) or 128(power pc/IEEE)
65-
// this is different from f128(not stable and not inculded default) in Rust, so we use u128 for FFI(Rust to C).
65+
// this is different from f128(not stable and not included default) in Rust, so we use u128 for FFI(Rust to C).
6666
// this is unstable and will couse to memfault/data abort.
6767
pub type c_longdouble = _CLongDouble;
6868

0 commit comments

Comments
 (0)