We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 928f2d6 + 22a41ed commit 5594447Copy full SHA for 5594447
src/teeos/mod.rs
@@ -62,7 +62,7 @@ pub struct _CLongDouble(pub u128);
62
63
// long double in C means A float point value, which has 128bit length.
64
// 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).
+// this is different from f128(not stable and not included default) in Rust, so we use u128 for FFI(Rust to C).
66
// this is unstable and will couse to memfault/data abort.
67
pub type c_longdouble = _CLongDouble;
68
0 commit comments